0
Im被卡住了,因爲我必須爲我的工作創建一個Update方法,但是對於AngularJs,表單沒有采用ng-model信息。我不知道爲什麼。因爲在我使用簡單的POST方法輕鬆完成之前2個小時。PUT方法在AngularJs中不起作用
這裏是我的控制器代碼:
$scope.UpdateData = function (petId) {
$http({
method: 'PUT',
url: baseApiUrl + '/pets/' + petId,
data: {
id: petId,
name: $scope.updateName,
age: $scope.updateAge,
owner: $scope.updateOwner,
}
}).then(function successCallback(response) {
console.log(response);
}, function errorCallback(response) {
console.log(response);
});
};
這是我的看法:
<table class="table table-hover table-bordered">
<thead>
<tr class="text-center pointer back-grey">
<th class="text-red">
Nom
</th>
<th class="text-red">
Age
</th>
<th class="text-red">
Propriétaire
</th>
<th class="text-red">
Action
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="pet in pets">
<td><input type="text" placeholder="{{ pet.name }}" name="name" class="form-control" ng-model="updateName" required></td>
<td><input type="text" placeholder="{{ pet.age }}" name="age" class="form-control" ng-model="updateAge" required></td>
<td><input type="text" placeholder="{{ pet.owner }}" name="owner" class="form-control" ng-model="updateOwner" required></td>
<td><input id="update" type="submit" class="btn btn-danger disabled" ng-click="UpdateData(pet.id)" /></td>
</tr>
</tbody>
</table>
當我改變我的形式的值,然後按下按鈕,我有這樣的:
Object {data: "1", status: 200, config: Object, headers: function}
該id是petId,因爲我問,但名稱不會改變。當我更改$ scope.updateName字符串像「你好」這是工作...
感謝您的幫助!
我做了你的建議,但我仍然有這個錯誤,當我嘗試寫的領域裏面的東西:類型錯誤:無法設置的未定義的屬性「0」。 –
好像你沒有啓動陣列。你必須在範圍初始化上做到這一點:** $ scope.updateAge = []; **所有數組; – Vanderson