我已经编写了一个可以用于后端和客户端的节点模块
(exports || window).Bar= (function () {
return function () { .... }
})();
现在我的业力测试使用PhantomJs并抱怨不存在的exports
变量
gulp.task('test', function () {
var karma = require('karma').server;
karma.start({
autoWatch: false,
browsers: [
'PhantomJS'
],
coverageReporter: {
type: 'lcovonly'
},
frameworks: [
'jasmine'
],
files: [
'bar.js',
'tests/bar.spec.js'
],
junitReporter: {
outputFile: 'target/junit.xml'
},
preprocessors: {
'app/js/!(lib)/**/*.js': 'coverage'
},
reporters: [
'progress',
'junit',
'coverage'
],
singleRun: true
});
});
我得到的错误是
PhantomJS 1.9.7 (Mac OS X) ERROR
ReferenceError: Can't find variable: exports
有没有办法忽略karam / phantomsJs中的exports变量?
答案 0 :(得分:6)
常见的模式通常是检查是否定义了exports
变量:
(function(){
...
var Bar;
if (typeof exports !== 'undefined') {
Bar = exports;
} else {
Bar = window.Bar = {};
}
})();
这个模式以in Backbone为例 - 嗯,从技术上讲,它在源代码中有点复杂,因为它确实支持AMD,但这就是它的想法。
你也可以按下检查,将它作为包装函数的第一个参数传递:
(function(exports){
// your code goes here
exports.Bar = function(){
...
};
})(typeof exports === 'undefined'? this['mymodule']={}: exports);
查看at this blog post了解更多信息。