angular.js - angular 指令中包含webworker 在單元測試中一直報找不到worker 檔案錯誤 如何解決?
漂亮男人
漂亮男人 2017-05-15 16:52:26
0
1
781
//directive.js
 var option = {
      'typeNumber': 4,
       'errorCorrectLevel':'L',
       'text': $scope.text
    }
$scope.worker = new Worker('/js/myworkers.js');
$scope.myworker.postMessage(option);

//test.js
describe('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")

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板