// 传统写法为
// 'User '
// + user.name
// + ' is not authorized to do '
// + action
// + '.'

`User ${user.name} is not authorized to do ${action}.`);
const tmpl = addrs => `
<table>
${addrs.map(addr => `
<tr><td>${addr.first}</td></tr>
<tr><td>${addr.last}</td></tr>
`).join('')}
</table>
`;

​文档​