我想使用'ng-model'以與使用'name'屬性類似的方式將動態複選框的值(不是布爾值true和false)放入數組的形式。這個數組現在被放入一個JSON對象中。如何使用ng-model綁定動態複選框的值?
<td>
<span ng-repeat="operation in operations_publish">
<input type="checkbox" name="operations" ng-model="operations" value="{{operation}}"/>
{{operation}}
</span>
</td>
以下是我的函數張貼JSON對象:
$scope.send = function() {
console.log("test");
var dataObj = {
"operationType" : $scope.operationType,
"conceptModelID" : $scope.conceptID,
"requestor" : $scope.requestor,
"status" : "new",
"requestDateTime" : null,
"lastExecutedDateTime" : null,
"completedDateTime" : null,
"instructions" : $scope.operations
};
console.log(dataObj);
console.log(dataObj.instructions);
var response = $http.post('PostService', dataObj);
response.success(function(data, status, headers, config) {
$scope.responseData = data;
});
response.error(function(data, status, headers, config) {
alert("Exception details: " + JSON.stringify({
data : data
}));
});
但 'dataObj.instructions' 是不確定的,當我運行的代碼。請提出是否這是正確的做法,以及我在這裏錯過了什麼。
你有'ng-model =「operations」'但是'operation'作爲ng-repeat中的迭代器。 –