我想实现一个模拟,一旦我的模块被加载,它就会调用服务器获取一些数据,而不是把它放在一个数据中。
我试过了:
mymodule.constant('value', function($http) {
$http.post('/path/to/api').success(function (response) {
return(response);
}).error(function (response) {
});
});;
但显然我错过了什么, 感谢