数据将存储在localhost中的位置

时间:2018-03-31 18:27:24

标签: angularjs localhost

我没有任何数据库连接,我使用http-server -o创建了localhost。 -o

我想将表单数据存储在我创建的localhost中。

$scope.sendData = function() {
$http({
      url: 'local-host://8080',
      method: "POST",
      data: { $scope.users }
}).success(function(response){
   alert("data stored successfully");
});
}

2 个答案:

答案 0 :(得分:0)

您可以使用localStorage存储表单数据,如

$scope.sendData = function() {
$http({
      url: 'local-host://8080',
      method: "POST",
      data: { $scope.users }
}).success(function(response){
   localStorage.setItem('response', response);
   alert("data stored successfully");
});
}

答案 1 :(得分:0)

您可以使用以下插件

https://www.npmjs.com/package/json-server

npm i json-server