-1
我有一個角度的動態形式。我想發送響應爲json。我如何從窗體生成JSON?使JSON數組從動態表單數據角度
這裏是完整的代碼,我必須得到json,並將其發佈到一些api。
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="dyf" ng-submit="submit()">
<form name="userFormOne" novalidate>
<table>
<tr class="form-group" ng-repeat="x in names">
<td><label>{{ x.Field }}</label>
</td><td><input type="text" class="form-control" placeholder="{{x.Comment}}" required>
</td>
</tr>
</table>{{data}}
</form>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('dyf', function($scope, $http) {
$http.get("http://localhost:5000/gu")
.then(function (response) {$scope.names = response.data;console.log(response.data);});
$scope.data ={};
});
</script>
</body>
</html>
用[NG-模型(https://docs.angularjs.org/api/ng/directive/ngModel)到輸入控件綁定到數據模型。然後發送模型對象到服務器 – charlietfl
@charlietfl怎麼樣? – itaintme
建議你學習一些教程。 Stackoverflow不是教程服務 – charlietfl