问题标签 [angularjs-ng-model]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
angularjs - 如何使用 html 部分中的表达式更新 ng-model 的值
为什么 ng-model 的值不随表达式更新。在 ng-model 定义之前,值得到更新
值将在阶段 2 或阶段 3 更改后立即更新
值不会更新
所以我想写一个指令来评估指令中的表达式并将输出更新为模型,
这是html,它看起来像
指示:
该指令仅在加载时评估,但我想随着相关字段(阶段 2 和阶段 3)的变化不断更新/观察。
我可以从控制器更新值,但我想从 html 中更新。请帮助我,它可能或反对角度的工作
angularjs - 用于选择的 AngularJS ng-model 未设置 selected="selected" 属性
我有一个用于编辑手术的 AngularJS 页面,但我无法让任何 <select> 显示当前值。表单中的所有其他字段都显示了它们的当前值,所以我不确定我做错了什么。
我有一个使用 ngResource 设置的工厂,它在我的控制器中。
这是手术状态的 HTML
这就是我从我的 2 $logs 在控制台中得到的
$scope.formData.surgeryStatus
$scope.surgeryData.surgery_status
表单中的 <select> 具有所有选项,但(对于本示例)未选择准备取货,并且我有一个空的?选项添加到选择
javascript - 使用 AngularJS 中的指令将对象存储在 ngModel 中
我现在使用 angularjs 已经有几个星期了,但在从 ngModelController 设计 $viewValue 和 $modelValue 功能时,我没有得到 angularjs 设计者的想法。代码示例:
索引.html:
脚本.js:
plunker 链接: http ://plnkr.co/edit/T5a8zEQuRyYWnpsZZV9W?p=preview
因此,在这个应用程序中,指令输入元素的值被写入全局范围,效果很好!我的问题是,我对“原始”字符串值不感兴趣,我想要格式化程序生成的数组,但输入元素仍应显示字符串值。
我怎样才能做到这一点??
期待您的回答。
javascript - How to auto select another option in angularjs using ng-options
I have two select option and am using ng-options to get the data from json files. My concern is if a value is selected in first select, i need to automatically choose a corresponding value in the other select. I am able to populate the data in the dropdowns. but am unable to connect the two. Please help.
Below is my code for first select:
And the second select is as follows:
And this is my code from controller:
angularjs - ng-checked 和 ng-change 单选按钮不能一起工作 - angularjs
http://plnkr.co/edit/RP9SpO1qGjn5Ua6pZJ3D?p=preview
js
和 html
注意“2 Mile”无线电输入是根据半径范围结构检查的。为什么 ng-change 不触发该功能?
如果我添加 ng-model,该函数会触发,但 ng-checked 不起作用。
javascript - 角度动态选择值
我values
在选择中动态生成了一些:
我有selectedValue
它保存选定的值。我希望它更新到null
或不再存在undefined
于.selectedValue
values
我可以清除selectedValue
in$scope.$watch(values)
但是有更好的解决方案吗?
基本上我想避免这种情况在这个 plunker中:
我希望它是“选定的值:null”或类似的东西。
angularjs - AngularJS:如何将 ng-model 绑定到 ng-repeat 中的数组
我似乎无法让我的多个下拉菜单工作。
在 html 中,结果是 ... ng-model="myArray[i] 而不是 ng-model="myArray[0] 等。
我试过大括号,但它不起作用。最接近的是 ng-model="myArray['{{ i }}'] 但这并不是我真正想要的。
编辑:这是一个小提琴来说明。
http://jsfiddle.net/dpkzzyug/1/
您需要检查 HTML 以查看结果字面上写出 i(或在本例中为 $index)而不是值。
angularjs - AngularJS - 数据绑定不起作用
对不起,英语是我的第二语言。
这是我的问题。我已将两个文本框绑定到范围。每个文本框都需要在更改时影响另一个。你会明白它会导致冲突。从现在开始,我得到了:
但它不能正常工作。知道如何欺骗吗?