0
我通過刷新頁面來更新視圖。我知道有更好的辦法。可有人告訴我如何更新視圖數據而無需刷新頁面:角度更新視圖,無需刷新頁面
myApp.service("deleteService", function ($http) {
this.removeRow = function (recId, compName, custName, docName) {
$http.post('DeleteRecord', { settingID: recId,companyName: compName,customerName: custName, documentName: docName })
.success(function (data, status, headers, config) {
window.location.reload();
})
.error(function (data, status, header, config) {
});
}
});
調用你用來獲取視圖數據的相同函數,在刪除成功裏面 –
更新視圖是什麼意思?更新模型綁定?在成功事件中,您可以在模型中設置綁定,視圖將反映這些更改。 – lintmouse
謝謝,請告訴我該怎麼做。 – user6440175