You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require.ensure(['./mall/orders/orderInfo/orderInfo'],function(require){
var OrderInfo = require('./mall/orders/orderInfo/orderInfo');
new OrderInfo({el:fresh.$content,oid:oid});
},'mall');
require.ensure(['./mall/orders/orderInfo/orderInfo'],function(require){
var OrderInfo = require('./mall/orders/orderInfo/orderInfo');
new OrderInfo({el:fresh.$content,oid:oid});
},'mall');
这边把2个和mall相关的代码全部打包到mall.js 文件
The text was updated successfully, but these errors were encountered:
require.ensure([]) 引用模块,其使用方法如下:
require.ensure(dependencies: String[], callback: function(require), chunkName: String)
采用require.ensure加载模块并给打包模块命名,代码如下:
这边把2个和mall相关的代码全部打包到mall.js 文件
The text was updated successfully, but these errors were encountered: