Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
const perunString = perun.times(100).toFixed(2).toString(); return `%{perunString} %`;
这给出了两个错误
您的模板插值语法中有一个错误,可能会导致这两个错误:
// Before `%{perunString} %` // After `${perunString} %`
注意从%{到的变化${。
%{
${