我没有任何数据库连接,我使用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");
});
}
答案 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)