1
我想從其他類的webpacked訪問類功能。 我:來自其他類的Webpack訪問類
var App = function() {
getResponsiveBreakpoint: function(size) {
var sizes = {
'xs' : 480, // extra small
'sm' : 768, // small
'md' : 992, // medium
'lg' : 1200 // large
};
return sizes[size] ? sizes[size] : 0;
}
}
,我想從使用此功能:
var Layout = function() {
var resBreakpointMd = App.getResponsiveBreakpoint('md');
}
這些類webpacked,這裏的配置:
var path = require('path'),
webpack = require('webpack'),
ExtractTextPlugin = require("extract-text-webpack-plugin"),
autoprefixer = require('autoprefixer'),
precss = require('precss'),
ProvidePlugin = require('webpack/lib/ProvidePlugin'),
jsPath = './js',
jsLayoutPath = './js/layout',
cssPath = './css',
cssLayoutPath = './css/layout',
cssThemesPath = './css/layout/themes';
module.exports = {
entry: {
login: [jsPath + '/login.js', cssPath + '/login.css'],
layout: [jsLayoutPath + '/layout.js', cssLayoutPath + '/layout.css'],
custom: cssLayoutPath + '/custom.css',
vendor: [
cssPath + '/bootstrap.css',
cssPath + '/bootstrap-switch.css',
cssPath + '/font-awesome.css',
cssPath + '/datatables.bootstrap.css',
cssPath + '/datatables.css',
cssPath + '/datatables.font-awesome.css',
cssPath + '/select2.css',
cssPath + '/select2-bootstrap.css',
cssPath + '/components.css',
cssPath + '/plugins.css',
cssPath + '/daterangepicker.css',
cssPath + '/uniform.default.css',
jsPath + '/jquery.js',
jsPath + '/jquery.blockUI.js',
jsPath + '/bootstrap.js',
jsPath + '/bootstrap-hover-dropdown.js',
jsPath + '/bootstrap-switch.js',
jsPath + '/select2.full.js',
jsPath + '/jquery.waypoints.min.js',
jsPath + '/jquery.slimscroll.js',
jsPath + '/jquery.counterup.js',
jsPath + '/jquery.uniform.js',
jsPath + '/jquery.validate.js',
jsPath + '/jquery.form.js',
jsPath + '/additional-methods.js',
jsPath + '/datatables.js',
jsPath + '/datatables.bootstrap.js',
jsPath + '/app.js'
],
respond: jsPath + '/respond.src.js',
excanvas: jsPath + '/excanvas.js'
},
output: {
path: __dirname + "/../../web/assets/js/", publicPath: '/assets/js/', filename: "[name].js"
},
module: {
loaders: [
{
test: /\.css$/,
exclude: /node_modules/,
loader: ExtractTextPlugin.extract("style-loader", "css-raw-loader!postcss-loader")
},
{ test: /jquery\.js$/, loader: 'expose?$' },
{ test: /jquery\.js$/, loader: 'expose?jQuery' },
{ test: /datatables\.js$/, loader: 'expose?DataTable' },
{ test: /jquery\.form\.js$/, loader: "imports?define=>false" },
{
test: /\.js(x)?$/,
exclude: /node_modules/,
loader: 'babel',
query: {
plugins: [
"transform-class-properties"
],
"presets": [
"stage-0",
"es2015",
"react"
],
compact: false
}
},
],
postcss: function() {
return [autoprefixer, precss];
}
},
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery",
"DataTable": "datatables.net"
}),
new webpack.optimize.UglifyJsPlugin({
compress: { warnings: false },
}),
new webpack.optimize.CommonsChunkPlugin("commons", "../js/commons.min.js"),
new ExtractTextPlugin("../css/[name].min.css", {
allChunks: true
}),
]
};
我怎樣才能做到這一點?我嘗試過使用公開模塊,但從未成功。謝謝!
您是否嘗試從包含佈局的文件中的'./從/./app/./應用程序導入應用程序?如果你不使用ES6(導入),你可以使用'var App = require('./ path/to/App /')' – Grgur
感謝您的回覆,我嘗試添加:var'App = require('./ js /app.js');'在layout.js頂部'然後我得到錯誤layout.js模塊沒有找到,當我添加內部佈局功能,我沒有找到app.js模塊 –
我想象你的路徑可能不是對。它應該是相對於layout.js。它可以'var App = require('../ app.js');'? – Grgur