我使用dotnet core spa stater模板创建了一个aspnet核心spa项目。我正在使用该stater模板附带的默认webpack配置。我试图包括bootstrap日期选择器。
我尝试过: npm i bootstrap-datepicker 将其添加到入口点并从boot.tsx导入它。 它给了我: $(...)。datepicker不是函数
我得到了相同的结果: npm i eonasdan-bootstrap-datetimepicker
我尝试过: npm install bootstrap-datepicker-webpack 它给了我: jQuery没有定义
以下是我的webpack.config.vendor.js
const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = (env) => {
const extractCSS = new ExtractTextPlugin('vendor.css');
const isDevBuild = !(env && env.prod);
return [{
stats: { modules: false },
resolve: {
extensions: ['.js'],
alias: {
jquery: Path.join(__dirname, 'node_modules/jquery/dist/jquery')
}
},
module: {
rules: [
{ test: /\.(svg|woff|woff2|eot|ttf)(\?v=\d+\.\d+\.\d+)?$/, use: 'url-loader?limit=100000' },
{ test: /\.css(\?|$)/, use: extractCSS.extract([isDevBuild ? 'css-loader' : 'css-loader?minimize']) },
{
test: /\.less$/,
use: [{
loader: "style-loader" // creates style nodes from JS strings
}, {
loader: "css-loader" // translates CSS into CommonJS
}, {
loader: "less-loader" // compiles Less to CSS
}]
}
]
},
entry: {
vendor: ['bootstrap', 'bootstrap/dist/css/bootstrap.css', 'event-source-polyfill', 'isomorphic-fetch', 'react', 'react-dom', 'react-router-dom', 'jquery', 'font-awesome-webpack', 'bootstrap-datepicker'],
},
output: {
path: path.join(__dirname, 'wwwroot', 'dist'),
publicPath: '/dist/',
filename: '[name].js',
library: '[name]_[hash]',
},
plugins: [
extractCSS,
new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' }), // Maps these identifiers to the jQuery package (because Bootstrap expects it to be a global variable)
new webpack.DllPlugin({
path: path.join(__dirname, 'wwwroot', 'dist', '[name]-manifest.json'),
name: '[name]_[hash]'
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': isDevBuild ? '"development"' : '"production"'
})
].concat(isDevBuild ? [] : [
new webpack.optimize.UglifyJsPlugin()
])
}];
};
以下是我的webpack.config.js
const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;
const bundleOutputDir = './wwwroot/dist';
module.exports = (env) => {
const isDevBuild = !(env && env.prod);
return [{
stats: { modules: false },
entry: { 'main': './ClientApp/boot.tsx' },
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx']
},
output: {
path: path.join(__dirname, bundleOutputDir),
filename: '[name].js',
publicPath: '/dist/'
},
module: {
rules: [
{ test: /\.tsx?$/, include: /ClientApp/, use: 'awesome-typescript-loader?silent=true' },
{ test: /\.css$/, use: isDevBuild ? ['style-loader', 'css-loader'] : ExtractTextPlugin.extract({ use: 'css-loader?minimize' }) },
{ test: /\.(png|jpg|jpeg|gif|svg)$/, use: 'file-loader?name=[name].[ext]&outputPath=img/' },
{
test: /\.less$/,
use: [{
loader: "style-loader" // creates style nodes from JS strings
}, {
loader: "css-loader" // translates CSS into CommonJS
}, {
loader: "less-loader" // compiles Less to CSS
}]
}
]
},
plugins: [
new CheckerPlugin(),
new webpack.DllReferencePlugin({
context: __dirname,
manifest: require('./wwwroot/dist/vendor-manifest.json')
})
].concat(isDevBuild ? [
// Plugins that apply in development builds only
new webpack.SourceMapDevToolPlugin({
filename: '[file].map', // Remove this line if you prefer inline source maps
moduleFilenameTemplate: path.relative(bundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
})
] : [
// Plugins that apply in production builds only
new webpack.optimize.UglifyJsPlugin(),
new ExtractTextPlugin('site.css')
])
}];
};
在boot.tsx文件中,我已经定义了这样的导入:
import './css/site.css';
import './css/AdminLTE.css';
import './css/skin-black.css';
import 'jquery';
import './js/morris.js';
import './js/app.js';
import './js/dashboard.js';
import './js/demo.js';
import 'font-awesome-webpack';
import 'bootstrap';
import 'bootstrap-datepicker';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import { AppContainer } from 'react-hot-loader';
import { BrowserRouter } from 'react-router-dom';
import * as RoutesModule from './routes';
let routes = RoutesModule.routes;
除了我提到的,我已经尝试在我的webpack.config.js中导入包,我尝试分别导入js和css文件。没有任何效果。我得到了同样的错误。我尝试导入上面提到的3个软件包(文件只显示bootstrap-datepicker,但我尝试添加所有2个软件包)。没有任何效果。
我看到的另一个问题是,如果我不像这样导入jquery
var jQuery = $ = require('jQuery');
在我的自定义js文件中,它抱怨未定义jquery,即使它是使用webpack.ProvidePlugin导出的。我不知道这是否是一个相关的问题。
在配置文件中添加别名是我在github中找到的修复。我尝试使用和不使用它,仍然得到相同的错误。有解决方案吗
答案 0 :(得分:2)
让我们再试一次简单的事情。
1-如果库不符合您的需求,在添加/安装它之后,您应该删除以避免堆叠大量未使用的库。
如果您正在使用npm run:npm uninstall --save moduleName
。 --save
参数更新你的package.json,不要忘记。
如果您使用yarn运行:yarn remove moduleName
2-每次尝试寻找内置的libs,可能在大多数情况下都有适合你需要的lib。
建议 - > https://github.com/Hacker0x01/react-datepicker/
3-遵循第2项中的建议:
您需要单独安装React和Moment.js,因为这些依赖项不包含在包中。下面是一个关于如何在React视图中使用Datepicker的简单示例。
我希望它能以任何方式帮助您解决问题。
答案 1 :(得分:0)
这对我有用(使用es6 / babel / webpack):
1)将提供插件添加到webpack config
import '../../../../../node_modules/
bootstrap-datepicker/dist/js/bootstrap-datepicker';
2)从node_modules
导入脚本文件{{1}}
(你的路径需要调整)