作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
只是好奇我们是否可以在 ng-options
中执行文本连接。
<select
...
ng-options="i.month | dnrMonthName + i.year for i in vmAdd.options.allMonths">
</select>
为了获得一个下拉列表,其中包含以下值:
May 2015
这可能吗?那么ng-options
怎么写呢?
最佳答案
是的,这是可能的。这是一个概念性示例 - 我相信您可以根据您的特定对象模型对其进行调整:
<select ng-model="selectedItem"
ng-options="item as (item.prop1 + ' ' + item.prop2) for item in items">
</select>
编辑:如果您需要进一步应用一些过滤器,您可以这样做:
ng-options="item as ((item.prop1 | uppercase) + ' ' + item.prop2) for item in items"
关于angularjs - 如何在 ngOptions 中连接字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29216210/
我是一名优秀的程序员,十分优秀!