0

我创建了一个 angular-promise,它调用一个 http 方法(对应于一个休息服务),它应该在提交表单时调用,使用 ng-submit。它永远不会发生,也没有错误,似乎从未调用过该函数。所以这里是javascript代码:

myapp.factory('CardFactory', ['$http', function($http){
return{
    cardService: function(hclass) {
        return $http({
            method: 'get',
            url: UrlServices.baseUrl + 'http://localhost:8080//HSRestServices/hsrest/decks/getCards/' + hclass,
        })
    }
    }
  }])
myapp.controller('CardCtrl', ['$scope',  'CardFactory', function($scope, CardFactory ){

$scope.card = "Druid";

$scope.cardService = function() {


    CardFactory.cardService($scope.card)
        .then(function (response) {

            $scope.status = response.status;
            $scope.card = response.data;

            console.log("Response: " + JSON.stringify({data: response.data}));

            if (response.status == 200){
                $scope.card = response.data;
            } else {
                console.log("Response: Something went wrong.");
            }
        }, function (response) {
            console.log("Response: Something went wrong.");
        })
};
 }]);

和html代码:

<body ng-app="mainApp">
<div ng-controller="CardCtrl">
<form ng-submit="cardService()">
    <input type="submit" value="Submit">
</form>
<p ng-model="card">{{card}}</p>

  </div>

 </body>

有什么想法吗?提前谢谢你。

4

2 回答 2

1

如果您在应用程序上没有看到“Druid”一词,很可能您的应用程序中没有包含 angular.js 和 app.js。

如果你这样做了,它可能正在工作,并且你没有正确定义 UrlServices,它找不到它。您可以查看浏览器控制台以获取更多详细信息。

否则它对我有用。看看这个 jsfiddle:https ://jsfiddle.net/j8o0ag4t/

在控制台中我看到:

 Error: Can't find variable: UrlServices

cardService@ http://fiddle.jshell.net/j8o0ag4t/show/:50:29 cardService@ http://fiddle.jshell.net/j8o0ag4t/show/:62:28 http://ajax.googleapis.com/ ajax/libs/angularjs/1.2.1/angular.min.js:160:97 http://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular.min.js:177:84 $eval @ http://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular.min.js:100:328 $apply@ http://ajax.googleapis.com/ajax/libs/angularjs/1.2 .1/angular.min.js:101:110 http://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular.min.js:177:71 http://ajax.googleapis.com /ajax/libs/angularjs/1.2.1/angular.min.js:27:19 forEach@[本机代码] p@ http://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular。 min.js:7:262 c@ http://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular.min.js:26:493

于 2015-10-25T11:53:10.593 回答
1

你必须给name你的表单一个属性,并且它所有的后续表单元素也应该有一个name自己。

此外,您不能拥有ng-model标签p。使用如下输入类型文本:

HTML:

<form name="cardForm" ng-submit="cardService()" novalidate>
    <input type="text" name="card" />
    <input ng-model="card" type="submit" value="Submit">
</form>
于 2015-10-25T11:54:07.667 回答