我在index.html页面中有这段代码
<div class=" property_value col-md-1" style="width: 13%; padding-left: 0px; padding-right: 2px">
<h6>Property Value(RM)</h6>
<input id="property_value" name="property_value" type="text" placeholder="500000" value="500000" ng-model="loanfilter.property_value" class="form-control property-value-input" style="height: 20px" />
</div>
在我的index.js控制器文件中,我有这个函数应该调用property
的值 $scope.paramsData = function() {
params = {
landType: $scope.loanfilter.land_type,
property: '$scope.loanfilter.property_type,
};
return param;
};
但它似乎没有起作用。如何从视图中将此值调用到angularjs中的控制器。
谢谢
答案 0 :(得分:0)
请务必在靠近控制器顶部的loanfilter
中声明loanfilter.property_value
和$scope
。这样,应该发生绑定。
$scope.loanfilter = {};
$scope.loanfilter.property_value = '';
希望有所帮助。