使用数据填充输入

时间:2017-05-17 14:50:08

标签: html angularjs

我正在尝试通过编辑按钮从数据库获取编辑表单的数据:

<button ui-sref="dashboard.modifierCand" type="button" class="btn btn-outline btn-info" ng-click="update(item._id)">Editer</button>

此按钮将显示一个新的编辑表单:

HTML:

<input type="text" class="form-control"  ng-model="newlogin">

AngularJS:

   $scope.update = function (id) { 
        console.log("this is the id " + id)
        $http ({
            header: 'content-type:application/json',
            url: '/ReadCandById/' + id,
            method: 'GET', 
        }).success(function (user) { 
            $scope.user = user[0];
           $scope.newlogin = user[0].Login;
           console.log($scope.newlogin) 
        })
    }
在控制台中我可以看到id和登录但它不能在输入中

enter image description here

0 个答案:

没有答案