如何使用hashmap进行ng-repeat

时间:2016-09-24 08:04:07

标签: angularjs ionic-framework hashmap angularjs-ng-repeat

我正在尝试使用此hashmap使用hashmap在离子/角度上显示我的数据,我的数据非常简单:

设置方法:

tables.set(1, "string one");
tables.set(2, "number one");


    <ul>
    <li ng-repeat='(key, value) in tables'>
      <span>Key: {{key}}, value: {{value}}</span>
    </li>
  </ul>

问题在于我无法使用ng-repeat来显示所有关键值。

1 个答案:

答案 0 :(得分:0)

尝试找到解决方案后

 <ul>
    <li ng-repeat='(key, value) in tables._data'>
      <span>Key: {{key}}, value: {{value[1]}}</span>
    </li>
  </ul>