角度 - 方向属性在视图中可用

时间:2013-07-17 15:06:20

标签: angularjs angularjs-directive angularjs-scope

我的观点如下:

<li game="12.99">Game2 <span ng-show="(price > 12.99)">test</span></li>

有没有办法在视图中访问价格(12.99),所以我的代码看起来像:

<li game="12.99">Game2 <span ng-show="(price > self.price)">test</span></li>

1 个答案:

答案 0 :(得分:0)

使用ng-init创建$ scope属性:

<li ng-init="price=12.99" game="{{price}}">Game2 <span ng-show="price > 12.99">test</span></li>