我是 AngularJS 的新手,我正在制作一个简单的烧瓶应用程序。我需要在哪里编辑文本值。我能够获得可编辑的文本框,但我正在努力为该文本框分配正确的值以使其可编辑。
这是我的角度代码
var app = angular.module("app", ['xeditable']);
app.controller('myctrl', function($scope, $http) {
$scope.myname ="Howdy" ;
$scope.User=[];
$http.get("/getdata")
.then(function(response){
$scope.User=response.data
})
$scope.edit ={
me : "task goes here"
};
});
这是我的 HTML 代码
<tr ng-repeat="user in User">
<td> {{user.uid }} </td>
<td > <a href="#" editable-text="edit.me" e-label="Edit Task"> {{ user.taskname }} </a>
<input type="image" class="deleteImg" src="static/img/trash_can.png" height="15px" width="18px" name="removeId" value="{{user.uid}}" >
<input type="image" src="static/img/editbtn.svg" height="15px" width="18px" name="editId" value="{{user.uid}}">
</td>
</tr>
我希望将用户单击的任务名称分配给 edit.me 模型字段