controller层调用service层的方法报错
问题描述
controller层调用service层的方法报错
问题出现的环境背景及自己尝试过哪些方法
我把service里的方法写到controller中时,这个方法可以正常执行.调用就出问题,报错not a function
另外service层代码在首页确认引入了的
相关代码
// 请把代码文本粘贴到下方(请勿用图片代替代码)
-----controller层
angular.module('o2o.statistics')
.controller('echartslistcontroller',
function ($scope,Echartslist) {
var vm = $scope.vm = {};
vm.chec=true;
vm.checked2=true;
$scope.test="";
$scope.selectSevenDays = function(response){
Echartslist.selectSevenDays().then(function (response) {
console.log("asd");
});
// return httpResource.deferWrap($http.get('rest/music/list/echarts')).then(function callback(response) {
// console.log(response.k1);
// return response;
// });
};
)};
------这是我的service层
angular.module('o2o.statistics')
.service('Echartslist', [
"$http",
"$q",
"httpResource",function ($http, $q, httpResource) {
this.selectSevenDays=function(response) {
return httpResource.deferWrap($http.get('rest/music/list/echarts')).then(function callback(response) {
return response;
});
}
}]);
你期待的结果是什么?实际看到的错误信息又是什么?
这个问题找了很久都找不出来原因,希望大家能给点意见,学艺不精 还请多指教
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论