1
首先我非常新的角JS。點擊次數並添加到輸入
我有一個項目列表,並通過點擊每一個,它應該被添加到表中。這些項目存儲在一個json文件中。
如果點擊事件重複多次,則位於表格上的計數器輸入必須增加。
<ul class="list-inline" >
<li ng-repeat="food in foods" class="food_list">
<img class="img-box" src="images/{{ food.food_photo }}" ng-click = 'addRow(food)'><br/><span>{{food.food_name}}</span>
</li>
</ul>
<table class="table" id="table-right">
<tr>
<th>Item Name</th>
<th>Quantity</th>
<th>Price</th>
<th class="hidden-print">Delete</th>
</tr>
<tr ng-repeat="row in rows">
<td>{{row.food_name}}</td>
<td><input type="number" class="form-control" ng-model="row.food_count"></td>
<td>{{row.food_cost}}</td>
<td class="hidden-print"><button class="btn btn-info hidden-print" data-ng-click="removeRow($index)">Remove</button></td>
</tr>
app = angular.module('app',[]);
app.controller('MyCtrl', ['$scope','$http', function($scope, $http){
$scope.rows = [];
$scope.addRow = function(obj) {
$scope.foodname = obj.id;
$scope.foodprice = obj.price;
$scope.rows.push(obj);
$scope.counter++;
}
}]);
你能幫幫我嗎?謝謝。
你能後的完整代碼(或將代碼放在一個[的jsfiddle(https://jsfiddle.net/)和後鏈接)? – pahan
@pahan這是小提琴鏈接,但我無法添加JSON文件。 https://jsfiddle.net/sk4kh3g3/ –
很難看到你沒有JSON文件做了什麼。你可以添加他們嗎?另外,將腳本代碼與DOM分離始終更好 – pahan