Questions tagged «angularjs-ng-model»


8
在输入中对ng-model进行过滤
我有一个文本输入,不想让用户使用空格,所有键入的内容都将变为小写。 我知道我不允许在ng-model上使用过滤器。 ng-model='tags | lowercase | no_spaces' 我研究了创建自己的指令,但仅向其上添加的元素添加了功能$parsers,$formatters但未更新输入ng-model。 如何更改当前输入的内容? 我实质上是在尝试创建“标签”功能,该功能与StackOverflow上的功能相同。

8
ng模型,ng重复和输入的难度
我正在尝试允许用户使用ngRepeat和编辑项目列表ngModel。(请参阅此小提琴。)但是,我尝试过的两种方法都导致了奇怪的行为:一种方法没有更新模型,另一种方法使每个keydown的表单模糊。 我在这里做错什么了吗?这不是受支持的用例吗? 这是小提琴中的代码,为方便起见进行了复制: <html ng-app> <head> <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet"> </head> <body ng-init="names = ['Sam', 'Harry', 'Sally']"> <h1>Fun with Fields and ngModel</h1> <p>names: {{names}}</p> <h3>Binding to each element directly:</h3> <div ng-repeat="name in names"> Value: {{name}} <input ng-model="name"> </div> <p class="muted">The binding does not appear to be working: the value in the …

6
AngularJS:ng模型未绑定到ng-checked复选框
在问这个问题之前,我已经提到了这一点。 AngularJs不与ng-model绑定ng-checked 如果在侧面ng-checked评估为,则不会更新。我无法按照上述问题的建议进行操作,因为我必须为每个复选框使用一些样式。truehtmlng-modelng-repeat 这是我为了说明我的问题而创建的插件。 http://plnkr.co/edit/YsOsPh3vjkPMUUDa6r2t 要查看我想要的内容,请打开控制台,然后单击Submit按钮。请不要选中任何复选框。 提前致谢!
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.