controller层调用service层的方法报错

发布于 2022-09-11 19:23:49 字数 1323 浏览 12 评论 0

问题描述

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文