0

所以我的问题是不言自明的,我想传递一个从角度模板引擎获得的参数作为参数。

就像是:

<div ng-click="model.myFunc({{user.id}})">click me</div>

问题是作为参数传递的任何其他数值都可以正常工作,正如以下 plunkr 所强调的: http ://plnkr.co/edit/GqTDpc?p=preview

但是,一旦我尝试使用模板引擎中的值,它就会中断。

强调我的确切问题的 plunker:http: //plnkr.co/edit/FdlBQ1

4

1 回答 1

2

在nested1.html 中更改了代码

<div ng-init="temp=user.id"data-ng-click="layout.toggleNestedContent(temp)" style="cursor:pointer;">
{{user.name}} {{user.id}} Click me in order to display the other nested box!
</div>

检查下面是工作示例

Working Demo

于 2013-09-09T13:26:38.633 回答