我嘗試調用一個函數的字符串作爲參數傳遞函數的參數字符串
<input type="checkbox" value={{user.name}} id={{user.name}} ng-click="toggleSelection({{user.name}})">
,但我有這個錯誤
Syntax Error: Token 'Marcus' is unexpected, expecting [)] at column 20 of the expression [toggleSelection(Julian Marcus)] starting at [Julian Marcus)].
我試過toggleSelection('{{user.name}}')
和toggleSelection("{{user.name}}")
但仍然是相同的問題
包裝在單引號'toggleSelection(「{{user.name}}」)' – GillesC
還需要圍繞價值的報價和id屬性作爲字符串包含空格。 – GillesC
我認爲不需要雙引號或單引號或任何插值。你可以傳遞變量。 –