我是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模型字段