我试图找出如何在模板文字中调用函数,并且似乎无法使其工作。我不熟悉使用模板,因此必须有一些我不知道的东西。
if __name__ == '__main__':
答案 0 :(得分:1)
只需将它们放在花括号中,就像你想要处理为javascript的其他任何表达式一样:
console.log(`This is ${test1('hi there')} and ${test2('hi again')}`);
答案 1 :(得分:0)
如下所述:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals
您需要将表达式包装在$ {...}
中