AngularJS service之select下拉菜单效果
本文实例为大家分享了service之select下拉菜单效果的具体代码,供大家参考,具体内容如下
使用ng-options
使用ng-repeat
区别
ng-options更适合来做下拉菜单
为什么这么说?
使用ng-repeat操作数组
你选择的是:{{selectedSite}}
你选择的是:{{selectedSite2.site}}
网址为:{{selectedSite2.url}}
看得出,ng-options操作的是对象而ng-repeat操作的是字符串 当选择值是一个对象时,我们就可以获取更多信息,应用也更灵活。