angularjs,ng-if导致input中ng-model双向绑定

韩楷
2023-12-01

在项目中,在input上绑定了ng-model=“name”,通过$scope.name始终获取不到值,console.log出来是undefined

解决方法:

在input中

<input type='text' name='name' ng-model='ifScope.name'>

 

可以在controller的js里这么写

$scope.ifScope=$scope

console.log($scope.ifScope.name)

这样就实现了在ng-if中的双向绑定

---------------------

在实际开发中,感觉ng-if有很多一不注意就出问题的地方。

 

 类似资料: