我有一個動態使用NG-重複產生一些texboxes:Ionic Framework - 如何提交包含動態內容的表單?
<ion-content>
<div class="matchList">
<div class="matchListItem" ng-repeat="match in matchData">
<div class="home-team-name">
{{match.Team1.TeamName}}
</div>
<div class="tip-input">
<input type="text" style="border:1px solid #CCC; width:100%; height:23px; padding-left:4px;" />
</div>
<div class="tip-center">
<center>:</center>
</div>
<div class="tip-input">
<input type="text" style="border:1px solid #CCC; width:100%; height:23px; padding-left:4px;" />
</div>
<div class="guest-team-name">
{{match.Team2.TeamName}}
</div>
<div style="clear:both"></div>
</div>
</div>
<div class="save-button">
<button class="button button-block button-positive" ng-click="save()">
Save
</button>
</div>
</ion-content>
這是一個足球聯賽的尖端遊戲。所以每個比賽日有兩個文本框。我想將文本框的值發送到一個php文件。我知道我可以這樣做:
$scope.save = function() {
$http.get('http://localhost/saveTips.php?data=' + data).then(function (response) {
$scope.doesItWork = response.data;
})
}
但我怎樣才能保存每個文本框的值在數據變量發送到php文件?
當我想提交第一個文本框的值時,我該做什麼?我試過它: var firstValue = $ scope.matchData [0] .model; (函數(響應)){console.log(response。)}函數(響應){console.log(response.txt)數據); }) } 但它說: 無法讀取屬性「0」的未定義 – Nono
我已經更新了一個小的例子,[看看它(http://jsfiddle.net/73Loumze/1 /)。讓我知道這是不是你正在尋找。 @不,不 –