在頭版有兩種選擇:獲取數據,形成
1,創建新
2.edit
1.it去的index.html
2.它應該去數據索引html(數據應該從數據庫加載)
//從數據庫中獲取數據
$scope.getItem = function(id) {
var auth = btoa("root:root");
$scope.form["@class"] = "ProjectDetails";
$http.defaults.headers.common.Authorization = 'Basic ' + auth;
$http.get("http://azuspeedcp01:2480/document/InternalRPA/"+id+"/*:-1", {
})
.then(function(response) {
console.log(response);
$scope.form=response.data;
});
}
這裏我從數據庫取回數據fine.its response.data 再次分配給$ scope.form這是我從形式傳遞給提交數據的對象。
//index.html(partial)
<input type="text" id="clientName" ng-model="form.ClientName">
<input type="text" id="initiate" ng-model="form.City">
<select id="Geo" ng-model="form.Geo">
<option value="North America">North America</option>
</select>
如何路由與數據的index.html。我沒有想法,請幫助我。
'response.data'的內容是什麼? – sisyphus
顯示完整的代碼 –
@sisyphus response.data意味着它從數據庫提供json和整個數據,我需要以表格 – dhanu