含义$ http服务中的URL

时间:2015-04-27 04:15:56

标签: javascript angularjs

我正在阅读一本书中的回合$http服务。 除了url部分之外,我有一个样本可以理解整个样本。

我不明白网址在哪里?或者我怎样才能找到它?

module.factory('memberDataStoreService', function ($http) {
                var memberDataStore = {};
                memberDataStore.doRegistration = function (theData) {
                    var promise = $http({method: 'POST', url: 'memberservices/register', data: theData});
                    return promise;
                }
                return memberDataStore;

即使在我的error承诺中,我试着看看我的错误有什么样的状态,我只是得到零

 promise.error(function (data, status) {
                            $scope.showErrorMessage = true;
                            $scope.wrong  = status;
                        });

这是我打印错误消息的代码

<div class="error" ng-show="showErrorMessage">
     There appears to have been a problem with your registration.<br/>
      {{wrong}}
      <br/>
</div>

我尝试调试时出现此错误

Failed to load resource: net::ERR_EMPTY_RESPONSE
http://localhost:8383/CustomService/memberservices/register Failed to load resource: net::ERR_EMPTY_RESPONSE

1 个答案:

答案 0 :(得分:-1)

嘿,你有一个服务器节点服务器或任何其他服务器来处理这个网址的请求 http://localhost:8383/CustomService/memberservices/register如果你的话,你只能期待没有错误