在angularjs中的put方法给出404错误

时间:2018-01-28 12:12:25

标签: javascript angularjs node.js put

  

我希望api中的值会更新而不会创建新数据。   ejs页面上的HTML代码是:

module.exports = {

  attributes: {
     name:'String'
  }
};
  

模型上的代码是:

var app=angular.module('myApp',[]);
app.controller('myCntr',function($scope,$http){

$scope.save=function(){
  var data = {
    name: $scope.property,
  };
  $http.put('http://localhost:1337/Changelabel',data).then(function(res){

      $scope.propertyvalue = res.data.name;

  },function (err) {
    console.log("error");
  })
}
  

角度控制器上的代码是:

{{1}}
  

我需要帮助才能了解如何更新架构中的值

0 个答案:

没有答案