gpt4 book ai didi

angularjs - 设置 ng-htmljs-preprocessor karma 预处理器

转载 作者:行者123 更新时间:2023-12-03 07:58:20 26 4
gpt4 key购买 nike

我正在设置我的 Karma 配置文件,但我不完全理解存在的一些选项,因为我没有成功测试已经通过 ngHtml2JsPreprocessor 并且已经

 $templateCached

在 ngHtml2JsPreprocessor 内部,我可以添加一些涉及路径的键值属性。
 ngHtml2JsPreprocessor: {

stripPrefix: ".*/Went all the way back to the root of my application/",


// moduleName: 'templatesCached'//
},

我现在注释掉了模板,以确保我可以作为模块访问每个文件。我正在加载没有错误的模块。我可以在我的开发工具中找到 templateCached 版本。
beforeEach(module('template')); 

我的 Templates 文件夹位于我创建的基本路径之外。
basePath: 'Scripts/',

我在预处理器对象中引用了它
  preprocessors: {
'../Templates/**/*.html' : ['ng-html2js']
},

同样,我的所有模板现在都是 js 文件并被缓存。

我在 package.json 中将文件保存为
save-dev

"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.2.2",
"karma-ng-html2js-preprocessor": "^0.2.1",

我在插件中引用了我的安装。
  plugins: [
'karma-chrome-launcher',
'karma-jasmine',
'karma-sinon',
'karma-ng-html2js-preprocessor'
],

我已加载所有文件
files: [

//jquery libaries
// angular libraries
// Scripts files
// source app.js
// tests folder and files
]

我的测试从 karma 开始运行

但是,我的指令只是一个空字符串
  element.html()  

返回“”

我已经设置了吟游诗人注入(inject)
bard.inject(
"$compile",
"$controller",
"$rootScope",
'$templateCache',
"haConfig",
"$q"
);

这是我的 beforeEach 的内部
 bard.mockService(haConfig, {
getTemplateUrl: '/tst!'
});

//bard.mockService(haConfig, {});
console.log('ha config2', haConfig.getTemplateUrl());

var html = angular.element("<div explore-hero></div>");

console.log('htl',haConfig.getTemplateUrl());

scope = $rootScope.$new();
//templateCache
element = $compile(html)(scope);
//console.log(haConfig.getTemplateUrl(html));
scope.$digest(element);
console.log('missing text',haConfig.getTemplateUrl(html));

controller = element.scope();

console.log("element", element);

我不知道为什么我得到一个空字符串。我正在创建 html 文件,但里面没有任何内容。

我只想知道是否应该将模板缓存文件显示在我的开发工具的文件夹中?还有是否应该在 karma.conf.js 的文件数组中引用文件

现在我引用了 html 文件?我已经尝试过 js 文件,但似乎没有做任何事情

最佳答案

这个问题实际上很简单。我很想删除它,但如果有人有类似的问题,我希望它可用。

在 karma.conf.js 里面我有一个

   stripPrefix: 'rootDirectory'   // was already in place

stripSuffix: '.js.html' // I had to make a strip on the templatesCached

prependSuffix: '.html' // this is what I was searching for

当预处理器运行它时,它模板缓存了我所有的文件。然而,它们并没有像我预期的那样结束,我无法阅读它们。我正确设置了模块和其他部件。

关于angularjs - 设置 ng-htmljs-preprocessor karma 预处理器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35854470/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com