解决方法
controller中定义一个集合:
$scope.data ={
text1 : "",
text2: "",
}
页面中分别定义 ng-model="data.text1",ng-model="data.text2"。
在controller中直接取$scope.data.text1就能得到<input>或者<textarea>中的值了
原理
ng-model取不到值是因为$scope作用域的问题
解决方法
controller中定义一个集合:
$scope.data ={
text1 : "",
text2: "",
}
页面中分别定义 ng-model="data.text1",ng-model="data.text2"。
在controller中直接取$scope.data.text1就能得到<input>或者<textarea>中的值了
原理
ng-model取不到值是因为$scope作用域的问题