3
Java Nashorn支持JavaScript template strings?Java Nashorn - 模板字符串
我想var a = `this is a \n multiline string \n `
當出現以下錯誤: javax.script.ScriptException: <eval>:1:22 Expected an operand but found error
Java Nashorn支持JavaScript template strings?Java Nashorn - 模板字符串
我想var a = `this is a \n multiline string \n `
當出現以下錯誤: javax.script.ScriptException: <eval>:1:22 Expected an operand but found error
隨着犀牛「腳本模式」(通過-scripting與JJS選項啓用,也-Dnashorn.args系統屬性可用於javax.script中設置選項)中,有一個用於多行字符串和字符串插值的Nashorn特定擴展。
參見:
如上所述,ES6特徵被添加到jdk9。您可以使用--language = es6選項啓用es6功能(子集)
它看起來像模板字符串不支持....他們正在使用一種叫做dustjs ....檢查出來.... http: //www.leveluplunch.com/blog/2014/06/09/compile-load-render-dustjs-template-java-nashorn/ – binbash