gpt4 book ai didi

jquery - Bootstrap 日期选择器无法与 Webpack 一起使用

转载 作者:行者123 更新时间:2023-12-03 13:37:45 26 4
gpt4 key购买 nike

我使用 dotnet core spa stater 模板创建了一个带有 React 的 aspnet core spa 项目。我正在使用该 stater 模板附带的默认 webpack 配置。我尝试包含引导日期选择器。

我尝试过:npm 我引导日期选择器将其添加到入口点并从 boot.tsx 导入。它给了我:$(...).datepicker 不是一个函数

我得到了相同的结果:npm 我 eonasdan-bootstrap-datetimepicker

我尝试过:npm 安装 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 中找到的修复。我尝试过使用和不使用它,仍然遇到相同的错误。有什么解决办法吗?

最佳答案

让我们再次尝试让事情变得简单。

1-如果某个库不适合您的需求,在添加/安装它后,您应该删除它以避免堆积大量未使用的库。

如果您使用 npm 运行:npm uninstall --save moduleName。 --保存参数并更新你的 package.json,不要忘记它

如果您使用yarn运行:yarn remove moduleName

2-每次尝试寻找内置的 react 库,可能在大多数情况下都有一个适合您需要的库。

建议-> https://github.com/Hacker0x01/react-datepicker/

3- 遵循第 2 项中的建议:

您需要单独安装 React 和 Moment.js,因为这些依赖项不包含在包中。下面是一个关于如何在 React View 中使用 Datepicker 的简单示例。

我希望它能以任何方式帮助您解决问题。

关于jquery - Bootstrap 日期选择器无法与 Webpack 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45552711/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com