本文介绍了角JS得到一个值出现在输入文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在这里有这个值:
{{step1.$valid}}
返回假的。我所试图做的是获取文本假出现在输入文本框:
which returns false. What I am trying to do is get the text "false" to appear in an input text box:
<input type="text" ng-model="user.stepValidation" ng-value="{{step1.$valid}}"/>
我也试过价值和NG绑定,并没有这些获得价值{{第一步。$有效}}出现在我的输入文本......请帮助。
I have also tried value and ng-bind and neither of these get the value from {{step1.$valid}} to appear in my input text...please help.
推荐答案
试试这个:
<input type="text" ng-model="user.stepValidation.step1.$valid"/>
下面是一个。
这篇关于角JS得到一个值出现在输入文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!