10
วิธีการลบรายการออกจากอาร์เรย์ในขอบเขต AngularJS
รายการที่ต้องทำง่าย ๆ แต่มีปุ่มลบในหน้ารายการสำหรับแต่ละรายการ: เทมเพลต HTML ที่เกี่ยวข้อง: <tr ng-repeat="person in persons"> <td>{{person.name}} - # {{person.id}}</td> <td>{{person.description}}</td> <td nowrap=nowrap> <a href="#!/edit"><i class="icon-edit"></i></a> <button ng-click="delete(person)"><i class="icon-minus-sign"></i></button> </td> </tr> วิธีการควบคุมที่เกี่ยวข้อง: $scope.delete = function (person) { API.DeletePerson({ id: person.id }, function (success) { // I need some code here to pull the person from my …
153
javascript
html
angularjs