4.模板字符串
程序员文章站
2022-03-08 14:08:03
...
模板字符串
ES6语序我们用反引号 ` 来定义我们的字符串,可以不需要用
+
来拼接字符串。如果字符串里面需要使用到变量的时候可以使用${variable}
,甚至可以在 {}
中使用js表达式。
const dp = {
name: 'dp',
todos: [
{ name: 'go to store', completed: false },
{ name: 'watch movie', completed: false },
{ name: 'running', completed: true },
]
}
const templete = `
<ul>
${dp.todos.map(todo => `<li>${todo.name} ${todo.completed ? '√' : 'X'}</li>`).join('')}
</ul>
`;
console.log(templete);
标签模板字符串
function highlight(strings, ...values) {
const highlighted = values.map(value => `<span class="highlight">${value}</span>`);
return strings.reduce((prev, curr, i) => `${prev}${curr}${highted[i] || ''}`, '');
}
const user = 'Marry';
const topic = 'Learn to use markdown';
const sentence = highlight`Dp ${user} has commented on your topic ${topic}`;
document.body.innerHTML = sentence;
上一篇: Ubuntu20.04 用户管理
下一篇: vue.js实现仿淘宝结账页面实例分享