防止JavaScript中的字符串转义
默认情况下,当JavaScript遇到转义字符(\
)时,它会转义后面的字符。然而,有些情况下你可能不希望这种行为发生(例如,当你想将Windows路径存储为字符串时)。对于这些情况,你可以使用模板字符串和String.raw()
标签函数:
const path = `C:\web\index.html`; // 'C:web.html'
const unescapedPath = String.raw`C:\web\index.html`; // 'C:\web\index.html'