使用AngularJS功能,我在数据库中查询对象(每个都有一个'数字'字段)
<article class='recipe' ng-cloak ng-repeat='recipe in recipes'>
<h2>
<a data-ng-bind="recipe.number"></a>
</h2>
</article>
显示&#39; recipe.number&#39;:
的列表 d024b8f1-a278-401d-9fd5-a72458a42dd8
0f647d45-607c-40a7-8dae-daea7385ea3f
49580ae2-54ea-491a-89ad-7035a8e10e0e
...
请您告诉我 - 如何通过点击显示的数字显示另一个对象的字段(例如&#39; recipe.text&#39;)?谢谢。
答案 0 :(得分:3)
您可以执行以下操作:
<article class='recipe' ng-cloak ng-repeat='recipe in recipes'>
<h2>
<a data-ng-bind="recipe.number" ng-click="showDetails = ! showDetails"></a>
</h2>
<div ng-show="showDetails">
<p>{{recipe.text}}</p>
</div>
</article>
当您点击该号码时,您会显示详细信息,当您再次单击时,它会隐藏详细信息。
答案 1 :(得分:1)
这是你想要的吗?
FB login
答案 2 :(得分:0)
在Lotus91的基础上回答: 如果您想一次显示一个食谱:
<article class='recipe' ng-cloak ng-repeat='recipe in recipes'>
<h2>
<a data-ng-bind="recipe.number" ng-click="showRecipe = recipe.text"></a>
</h2>
</article>
<div ng-if="showRecipe != ''">
<p>{{showRecipe}}</p>
</div>
或者,如果您想一次显示多个:
<article class='recipe' ng-cloak ng-repeat='recipe in recipes'>
<h2>
<a data-ng-bind="recipe.number" ng-click="recipe.showRecipe = ! recipe.showRecipe"></a>
</h2>
<div ng-if="recipe.showRecipe">
{{recipe.text}}
</div>
</article>