当尝试使用 JavaScript 模板文字(例如 some ${string} 或“some ${string}”)时,用户可能会遇到问题其中显示文字变量名称而不是它们的值。这个问题并不限于特定的浏览器版本或像 jQuery 这样的开发框架。
要纠正这个问题,使用反引号 (`) 而不是传统的单引号是至关重要的或双引号。反引号通常称为“重音符号”,位于标准 QWERTY 键盘上数字 1 键的旁边。
示例:
// Incorrect approach console.log('categoryName: ${this.categoryName}\ncategoryElements: ${this.categoryElements} '); // Correct approach using backticks console.log(`categoryName: ${this.categoryName}\ncategoryElements: ${this.categoryElements} `);
通过使用反引号,您可以正确调用模板文字并显示所需的变量值。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3