Browserify - require()一个conbimed字符串不会将模块构建到输出脚本中

时间:2014-09-02 00:41:51

标签: javascript browserify

如果require()是一个组合的字符串路径。此模块路径不包含在输出脚本中 像:

require("./"+"b" );
//or
var path="./";
require(path+"b");

我有a.js

module.exports="a";

b.js

module.exports="b";

如果使用var b = require('./'+'b');结果将是:

(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
module.exports="a";

},{}],2:[function(require,module,exports){
var a = require('./a');
var b = require('./'+'b');

},{"./a":1}]},{},[2]);

如果使用var b = require('./b');结果将是:

(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
module.exports="a";

},{}],2:[function(require,module,exports){
module.exports="b";

},{}],3:[function(require,module,exports){
var a = require('./a');
var b = require('./b');

},{"./a":1,"./b":2}]},{},[3]);

我打开了这个问题:https://github.com/substack/node-browserify/issues/883

1 个答案:

答案 0 :(得分:0)

一种解决方案是使用aliasify