var app = angular.module('app', []);app.controller('Ctrl', function($scope, $http) { $("#cc").click(function() { $scope.sdata2 = { name: $(".aa").html(), pwd: $(".bb").html() }; $http({ url: "../download.json", mettod: 'get', data: $scope.sdata2, dataType: 'json', }).then(function(data) { $scope.txt = data.data.data; }) })})没有报错后面没有参数 是我写错了吗?
添加回答
举报
0/150
提交
取消