如何检查是否在php中单击了数组结果

时间:2018-05-04 09:12:33

标签: php mysql

如何检查是否单击了数组结果。 下面是我遍历数据库的代码。 现在的问题是没有检查以确认是否单击了数组的结果。

 
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);
  });}});

0 个答案:

没有答案