angular.js - angular 指令中包含webworker 在单元测试中一直报找不到worker 文件错误 如何解决?
问题描述
//directive.js var option = { ’typeNumber’: 4, ’errorCorrectLevel’:’L’, ’text’: $scope.text }$scope.worker = new Worker(’/js/myworkers.js’);$scope.myworker.postMessage(option);//test.jsdescribe(’Directives test’, function(){ var $compile, $scope, $templateCache, $httpBackend,workerValue,$timeout; beforeEach(module(’directives’)); ... ... ...it(’qrcode test’, function(){$httpBackend.expectGET(’webroot/js/myworkers.js’).respond(200,’woker’);var link = $compile(’<my-qrcode value='qrcode_text' change='false'></my-qrcode>’);var element = link($scope);$scope.$digest();console.log(element.html());//expect(element.html()).toEqual(workerValue)});//karma.conf.js... // list of files / patterns to load in the browser files: [ ’testjs/jquery.js’, ’webroot/js/lib/angular/angular.js’, ’webroot/js/lib/angular/angular-route.js’, // ’webroot/js/lib/angular/angular-animate.js’, ’webroot/js/lib/angular/angular-resource.js’, ’webroot/js/lib/angular/angular-sanitize.js’, ’webroot/js/lib/angular/*.min.js’, ’webroot/js/lib/bootstrap-ui/*.js’, // ’webroot/js/lib/angular/angular-loader.js’, ’webroot/js/lib/angular/angular-mocks.js’, ’webroot/js/myworkers.js’, ’webroot/js/bootstrap.js’, ’webroot/js/services.js’, ’webroot/js/directives.js’, ’webroot/js/filters.js’, ’webroot/js/app.js’, ’webroot/js/controllers.js’, ’testjs/*.js’ ], ...
报错报错提示
][2]
debug中的 resource

我看到有人说 这样就可以了但是现在不行 谁能说说这是什么情况吗??怎么解决呢??
问题解答
回答1:..把路径写好就好了。。。。 new work('base/webroot/js/myworker.js')
相关文章:
1. mongodb可以导出数据到excel吗?2. 如图,java中同样是utf-8存储的字符串,为什么这两种方式输出的字节会不同?3. linux - python ImportError: No module named ’***’4. javascript - ElementUI tree控件怎么通过子节点去找到父节点?5. python - 一个简单的正则匹配问题6. Android的webView如何实现网页 录音功能?7. python 中文乱码问题8. python - win7 64位,安装urllib老是报错?9. 文本处理 - 求教使用python库提取pdf的方法?10. Python 中如何对单个字典中同一个 key 的值进行合并?

网公网安备