在我的页面上,我有bs-table。数据来自api调用。通过单击行,我发送新的api调用以从db检索行数据。然后我为res数据设置范围变量并在页面上呈现它
$('#table').on('click-row.bs.table', function (e, row, $element) {
$('.success').removeClass('success');
$($element).addClass('success');
var indexId = $table.find($element).data('index');
var rowData = $table.bootstrapTable('getData')[indexId];
$scope.id = rowData.id;
$http.get(url + $scope.id)
.then(function (res) {
$scope.rowData = res.data.model;
console.log($scope.rowData);
$scope.rowKeys = Object.keys($scope.rowData);
});
$scope.$apply();
});
html:
<form style="padding: 15px" ng-submit="submitForm()">
<div class="form-group row">
<div ng-repeat="k in rowKeys | filter: '!id'" ng-model="rowValue">
<label for="rowValue" class="col-sm-2">
<!--{{k | hide:'.name'}}:-->
{{k }}:
</label>
<div class=" col-sm-2">
<input class="form-control rowValue" id="rowValue" value="{{rowData[k]}}"/>
</div>
</div>
</div>
<button type="submit" class="btn btn-default" ng-if="rowData" >Submit</button>
然后通过ng-submit我想发回已经以该表格进行的更改
$scope.submitForm = function() {
$scope.$watch('rowData', function(newValue, oldValue) {
console.log('being watched oldValue:', oldValue, 'newValue:', newValue);
}, true);
$http({
method : 'PUT',
url : url + $scope.id,
data : $scope.rowData, //form
headers : {'Content-Type': 'application/json'}
})
.then(function (res) {
//console.log(res);
//console.log($scope.rowData);
return res;
});
};
正如您所看到的,我已设置$ watch以跟随范围变量的更改,但问题是控制台日志返回oldValue和newValue的相同值。谁能解释一下我的错误在哪里?我感谢任何帮助
答案 0 :(得分:1)
您并未将值绑定到任何内容。不要在输入元素上使用value="{{rowData[k]}}"
,而是使用ng-model:ng-model="rowData[k]"
。
答案 1 :(得分:0)
在请求有机会完成之前,您正在调用$scope.$apply();
。您需要将$scope.$apply();
置于 then()
回调中。
$http.get('stuff').then(function(response){
//stuff
$scope.$apply();
});