这是我的angular.js SPA模板:
<div data-id="{{id}}" ng-repeat="id in array.id">
<input type="text" name="value1" value="{{value1}}">
<input type="text" name="value2" value="{{value2}}">
</div>
此模板的数据通过控制器中的http post请求加载。
现在我想将这些数据发送回php脚本以将其保存在数据库中。我想在一个指令中这样做,但我不知道如何动态发送数据 - 因为有多行和一些模板有点不同。
答案 0 :(得分:0)
首先关闭...使用模型,它将使您的生活更轻松
<div data-id="{{id}}" ng-repeat="id in array.id">
<input type="text" name="value_{{$index}}" ng-model="id.value">
</div>
其次,在你的控制器中,你将需要使用$ http.post将数据发送到你的php端点/脚本。
app.controller("SomeController", function($scope, $http){
$scope.sendFunction = function (array) {
var data = {
array: array // The array of data you are passing in
}
$http.post('yourPhpEndpoint.php', data).success(function(data){
//This means that you have succeeded
}).error(function(){
//This means that it failed
})
}
})
第三,我将假设您正在使用规范化数据库,并希望将这些数组逐个输入到表中......在您的PHP文件中。
$data = json_decode(file_get_contents('php://input'));
$submittedInfo = $data->array;
foreach($submittedInfo as $arrayItem){
// Do an insert into the database
}