サービスの無制限の操作を保存する新しい属性をサービスに追加しました(連絡先やエンドポイントのテーブルのようなものです)WSO2 GREGのストアに属性テーブルを表示するにはどうすればよいですか?
私の質問は、その属性テーブルをStoreでどのように表示するかです。
私は、資産attributes.hbsこの
<div class="es-col-lg-12 col-lg-12">
<h4>{{t "Operaciones del Servicio Web"}}</h4><hr>
{{#each this.attributes.operaciones_nombre }}
<div class="es-col-lg-12 col-lg-12 divrow">
<div class="col-lg-2"><b>{{t "Nombre"}} :</b></div>
<div class="col-lg-10">{{ this.attributes.operaciones_nombre}}</div>
</div>
{{/each}}
のような新しい属性を入れてみましたedditingしかし、問題は、それが#eachの内だとき、それはthis.attributes.operaciones_nombreを示しdoesntのことです、私がを使用した場合でもthis.attributes.operaciones_nombre。[0]最初の要素だけ
を示し、なぜループのみ{{#eachのthis.attributes.operaciones_nombre}}で動作なく{{#eachのthis.attributes.operaciones}}には? asset.jsで定義する必要がありますか?
5.2.0を使用していますか?あなたの問題を解決する答えはありますか? – tkr