使用http放入角度js更新json数据时出错?

时间:2015-07-21 10:36:17

标签: angularjs http-put

为什么我会得到这个

PUT file:/// C:/ Users / User / Documents / Work / someapi / word / 15 net :: ERR_FILE_NOT_FOUND 我何时更新

$http({
    url: url + Id,
    method: "PUT", //update
    dataType: 'json',
    data: JSON.stringify({
      Id: '154',
      word: $scope.new,
      Date: new Date(),
    }),
    headers: {
      'Content-Type': 'application/JSON'
    }

  })
  .success(function(result) {
    console.log(result);
  })

我没有更新文件。我很困惑。

1 个答案:

答案 0 :(得分:1)

请检查网址是否有效。确保您在网址

中使用http://https://