of-model在AngularJS中不使用ng-value

问题描述 投票:0回答:2

以下是我的查看页面

<form name="form">
     <label>Name</label>
     <input name="name" type="text" ng-model='user.name' ng-value='emp.name' required />
     <span ng-show="form.name.$touched && form.name.$invalid">Name is required</span>
     <button ng-disabled="form.name.$touched && form.name.$invalid" ng-click='formUpdate()'>Update</button>
</form>

这是我的控制器

$scope.formUpdate = function() {
  $scope.status = false;
  $http({
  method : 'POST',
  url : 'model/update.php',
  data :   $scope.user ,
  headers : {'Content-Type': 'application/x-www-form-urlencoded'}          

  }).then(function mySuccess(response) {
    $scope.update = response.data;
    console.log(response.data); 
   }, function myError(response) {
    $scope.update = response.statusText;

   }); 
};

当我在我的HTTP调用中使用数据时:$scope.user我在控制台上得到空白值但是如果我使用数据:$scope.emp,那么我永远不会获得输入字段的更新值而是获取输入字段的旧值。

javascript angularjs input angularjs-1.6
2个回答
2
投票

ng-value将给定的表达式绑定到元素的值。

据我了解你的问题,你正在尝试将输入值初始化为emp.name

您应该将输入更改为:

<input type="text" ng-model='user.name' ng-init='user.name = emp.name' required />

ng-init docs


0
投票

试试这段代码;

$scope.formUpdate = function(){
  $scope.status = false;
  $scope.$applyAsync();

  $http({
  method : 'POST',
  url : 'model/update.php',
  data :   $scope.user ,
  headers : {'Content-Type': 'application/x-www-form-urlencoded'}          

  }).then(function mySuccess(response) {
    $scope.update = response.data;
    $scope.$applyAsync();
    console.log(response.data); 
   }, function myError(response) {
    $scope.update = response.statusText;  
    $scope.$applyAsync();
   }); 

  };
© www.soinside.com 2019 - 2024. All rights reserved.