©
このドキュメントでは、php中国語ネットマニュアルリリース
绑定给定的表达式到input[select]
或input[radio]
的值上,这样当元素被选中时, 元素的ngModel
会被设为当前绑定的值。
ngValue
经常用于使用ng-repeat
动态生成单选按钮列表,如下面所示。
[ng-value=""]>...
Param | 类型 | 详述 |
---|---|---|
ngValue
(可选)
|
string | Angular表达式,绑定到 |
angular.module('valueExample',[]).controller('ExampleController',['$scope',Function($scope){$scope.names=['pizza','unicorns','robots'];$scope.my={favorite:'unicorns'};}]);
varfavorite=element(by.binding('my.favorite'));it('should initialize to model',Function(){expect(favorite.getText()).toContain('unicorns');});it('should bind the values to the inputs',Function(){element.all(by.model('my.favorite')).get(0).click();expect(favorite.getText()).toContain('pizza');});