我使用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' }