最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

解决ng-repeat产生的ng-model中取不到值的问题

来源:动视网 责编:小采 时间:2020-11-27 22:06:41
文档

解决ng-repeat产生的ng-model中取不到值的问题

解决ng-repeat产生的ng-model中取不到值的问题:最近遇到在ng-repeat产生的textarea中绑定ng-model后,在js中取不到ng-model值的问题。 html的代码结构如下 <div class=ques-item hide1 show9a id=q10> <div class=ques-item-question> 10
推荐度:
导读解决ng-repeat产生的ng-model中取不到值的问题:最近遇到在ng-repeat产生的textarea中绑定ng-model后,在js中取不到ng-model值的问题。 html的代码结构如下 <div class=ques-item hide1 show9a id=q10> <div class=ques-item-question> 10


最近遇到在ng-repeat产生的textarea中绑定ng-model后,在js中取不到ng-model值的问题。

html的代码结构如下

<div class="ques-item hide1 show9a" id="q10">
 <div class="ques-item-question">
 10.{{questions[9].questionContent}}
 </div>
 <div class="ques-item-option">
 <div ng-repeat="option in questions[9].options">
 <input type="{{questions[9].questionType}}" name="problem10" value="{{option.optionCode}}" id="{{option.id}}">
 <label for="{{option.id}}">{{option.optionContent}}</label>
 <textarea ng-if="$index == 4" class="ques-option-text" name="" id="" cols="30" rows="1" ng-model="text10"></textarea>
 </div>
 </div>
</div>

用ng-repeat循环输出了该题目的选项,有的选项后面有输入框,于是用ng-if控制某个选项后面添加textarea输入框。在用ng-model双向绑定了text10后,当输入框中输入内容时,js中的$scope.text10并不能取得内容。

经过查询发现原因是,ng-repeat会产生子作用域,而js中的scope是父作用域的,Angularjs中的作用域向上查找,所以是不能取得ng-repeat中的绑定值的。

解决方案就是把子scope中的值通过$parent属性传递给父scope,同时把text10定义为数组,即前端绑定时使用$parent.text10[$index],这样就绑定了每一个textarea输入框的值,从而能在js中获取到。

修改后如下:

<div class="ques-item hide1 show9a" id="q10">
 <div class="ques-item-question">
 10.{{questions[9].questionContent}}
 </div>
 <div class="ques-item-option">
 <div ng-repeat="option in questions[9].options">
 <input type="{{questions[9].questionType}}" name="problem10" value="{{option.optionCode}}" id="{{option.id}}">
 <label for="{{option.id}}">{{option.optionContent}}</label>
 <textarea ng-if="$index == 4" class="ques-option-text" name="" id="" cols="30" rows="1" ng-model="$parent.text10[4]"></textarea>
 </div>
 </div>
</div>

以上这篇解决ng-repeat产生的ng-model中取不到值的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

文档

解决ng-repeat产生的ng-model中取不到值的问题

解决ng-repeat产生的ng-model中取不到值的问题:最近遇到在ng-repeat产生的textarea中绑定ng-model后,在js中取不到ng-model值的问题。 html的代码结构如下 <div class=ques-item hide1 show9a id=q10> <div class=ques-item-question> 10
推荐度:
标签: 出现 问题 的问题
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top