AngularJS:使用$ http获取数据并将其添加到模块的常量中

时间:2014-06-29 09:16:13

标签: javascript ajax node.js angularjs http

我想实现一个模拟,一旦我的模块被加载,它就会调用服务器获取一些数据,而不是把它放在一个数据中。

我试过了:

mymodule.constant('value', function($http) {
    $http.post('/path/to/api').success(function (response) {
       return(response);
    }).error(function (response) {

    });
});;

但显然我错过了什么, 感谢

0 个答案:

没有答案