角度ng-repeat或ng-options如何使用?

时间:2014-09-03 13:22:36

标签: angularjs

这是一个问题。我想在服务的select中列出一些选项:服务返回一个这样的数组。

["AZERBAIDJAN", "BRAZIL", "CAMEROON", "EQUATOR", "FRANCE", "GHANA"]

我不知道使用ng-repeat或ng-options会更好。我知道用ng-repeat的集合来做! 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

您应该使用ngOptions进行选择

  <select ng-model="yourModel" 
          ng-options="country  as country for country in yourData">    
  </select>