Доброго времени суток, необходимо сделать PUT запрос, для этого по нажатию кнопки edit, хочу, чтобы поля сразу заполнялись уже имеющимися данными и уже после пользователь бы их редактировал и отправлял бы измененную версию, но в не могу в тэг input ничего вставить
<div layout-gt-sm="row" ng-controller="PutCtrl">
<md-input-container flex>
<label>Name</label>
<input type="text" ng-model="catName"/>
</md-input-container>
<md-input-container flex >
<label>Color</label>
<input type="text" ng-model="catColor"/>
</md-input-container>
<md-input-container flex >
<label>Age</label>
<input type="text" ng-model="catAge"/>
</md-input-container>
<md-button class="md-raised md-warn" ng-click="sendPut()">Change cat</md-button>
</div>
app.controller('PutCtrl', function ($scope, $http) {
$scope.putReq = function (url) {
alert(url)
$http({
method: 'GET',
url: url
})
.success(function (response) {
$scope.ResponsePut = response;
$scope.catName = ResponsePut.name;
$scope.catColor = ResponsePut.color;
$scope.catAge = ResponsePut.age;
});
};
$scope.sendPut = function () {
}
});
пробовал также использовать value
<input type="text" value=" " ng-model="catName"/>
Но тоже не помогло