在PUT方法nodejs中设置ID

时间:2016-06-11 12:31:42

标签: javascript html angularjs node.js

在服务器上有代码

apiRoutes.put('/intake', function(req, res)  {
  Intake.findById({id, function(err, intake) {
      if (err)
          res.send(err);
            check : true;
            intake.save(function(err) {
      if (err) {
        return res.json({success: false, msg: 'Error'});
      }
      res.json({success: true, msg: 'Successful update check state.'});
    });
  }})
});

我应该从前端设置ID值,但我不知道如何在功能中设置它。试试这个apiRoutes.put('/ intake',id,function(req,res),但id未定义 在controller.js的前面:

$scope.changeCheck = function(id) {
    console.log(id);
    mService.intake("PUT", $scope.intake, {"action": "put"}, id)
      .success(function(data, status, headers, config) {
    }).error(function(err) {
      mService.errorHandler(status);
    });
  };

在服务档案中:

 intake : function(method, data, params, value) {

      var endpoint = "";
        switch (params.action) {
        case "put" :
          endpoint = "intake/" + value;
          break;
      }

      return this.request(method, endpoint, data);

    }

HTML

<li ng-repeat="intake in intakes">
                    <div class="welcome-box">
                        <div class="welcome-box-content" >
                        <label class="checkbox">
                        <input type="checkbox" ng-model="intake.check" ng-change="changeCheck(intake.pres_id)" />
                        </label>
                        <span class="drugs"> {{intake.dname}} <br></span> <span class="drugsdescr"><i class="fa fa-comment" aria-hidden="true"> </i> {{intake.comment}} <i class="fa fa-medkit" aria-hidden="true"></i> {{intake.dose1}}{{intake.dose2}} </span>
                        </div>
                    </div>
                </li>

GET摄入量

mService.intake("GET", "", {"action" : "get"})
  .success(function(data, status, headers, config) {
    $scope.intakes = data;
    console.log(data);
  })
  .error(function(data, status, headers, config) {
    mService.errorHandler(status);
  });

1 个答案:

答案 0 :(得分:1)

如果我没弄错的话,你在角度服务中提供id值作为网址的一部分:

endpoint = "intake/" + value;

最终会出现这样的情况:intake/12345

由于您未在此处使用查询参数,因此服务器会将此作为网址的一部分。

所以你必须在id是网址的一部分的服务器上指定它:

'/进气/的:ID

apiRoutes.put('/intake/:id', function(req, res)  {
   ...
});

然后你可以从请求中获取id值:

req.params.id

所以你在服务器上的put函数应该是这样的:

apiRoutes.put('/intake/:id', function(req, res)  {
  var id = req.params.id;      

  Intake.findById({id, function(err, intake) {
      if (err)
          res.send(err);
            check : true;
            intake.save(function(err) {
      if (err) {
        return res.json({success: false, msg: 'Error'});
      }
      res.json({success: true, msg: 'Successful update check state.'});
    });
  }})
});