如何检查是否单击了数组结果。 下面是我遍历数据库的代码。 现在的问题是没有检查以确认是否单击了数组的结果。
var app = angular.module('app', []);
app.controller('Controller', function($scope){
$scope.data = {};
$scope.fetch = function(){
$http.get("fetch.php").then(function (response) {
$scope.vals = response.data;
});
}$scope.fetch();
$scope.Submit = function(){
var formdata = $scope.data;
$http.post("post.php", formdata)
.then(function(response){
console.log(response.data);
});}});