带有MVC捆绑包的OCLazyLoad

时间:2018-07-10 19:04:58

标签: angularjs oclazyload

我使用MVC捆绑来捆绑JS文件:

bundles.Add(new ScriptBundle("~/bundles/essentialjs").Include(
                                  "~/Scripts/spa/features/exception/exceptionModule.js",
                                  "~/Scripts/spa/features/exception/controllers/errorController.js"                    
            ));

我需要使用OCLazyLoad加载这些MVC捆绑软件。我尝试了以下代码,但未找到捆绑软件的404。

.state('test',
      {
        url: "/login",
        templateUrl: "scripts/test.html",
        resolve: {
          plugins: ['$ocLazyLoad', function ($ocLazyLoad) {
            console.log('oczload');
            return $ocLazyLoad.load([
              { type: 'js', path: '~/bundles/essentialjs' }
            ]);
          }]
        }
      })

问题似乎在此行上:

 { type: 'js', path: '~/bundles/essentialjs' }

0 个答案:

没有答案