我的观点如下:
<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>
答案 0 :(得分:0)
使用ng-init创建$ scope属性:
<li ng-init="price=12.99" game="{{price}}">Game2 <span ng-show="price > 12.99">test</span></li>