码迷,mamicode.com
首页 > Web开发 > 详细

angularJs实现修改功能

时间:2019-02-13 12:56:36      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:cli   scope   实体   var   angular   one   type   功能   ons   

思路: 对表单中内容进行修改,首先需要获取这个内容,再进行修改,再清空弹窗中的内容

//查询实体
$scope.findOne=function(id){
    $http.get(../brand/findOne.do?id=+id).success(
    function(response){
    $scope.entity= response;
    }
  );
}

第一步获取相应实体‘

<button  type="button"  class="btn  bg-olive  btn-xs"  data-toggle="modal"
data-target="#editModal" ng-click="findOne(entity.id)" >修改</button>

第二步保存数据:

$scope.save=function(){
    var methodName=add;//方法名称
    if($scope.entity.id!=null){//如果有 ID
    methodName=update;//则执行修改方法
} 
$http.post(../brand/+ methodName +.do,$scope.entity ).success(
    function(response){
    if(response.success){
//重新查询
    $scope.reloadList();//重新加载
    }else{
    alert(response.message);
  }
  } 
  );
}

 

angularJs实现修改功能

标签:cli   scope   实体   var   angular   one   type   功能   ons   

原文地址:https://www.cnblogs.com/xiufengchen/p/10369103.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!