- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我第一次尝试使用 webpack 时遇到了困难。
我在浏览器控制台中收到以下错误。
ERROR TypeError: $(...).sparkline is not a function
这是我的 webpack.config.vendor.js 代码
const path = require('path');
const webpack = require('webpack');
//const ExtractTextPlugin = require('extract-text-webpack-plugin');
const merge = require('webpack-merge');
const treeShakableModules = [
'@angular/animations',
'@angular/common',
'@angular/compiler',
'@angular/core',
'@angular/forms',
'@angular/http',
'@angular/platform-browser',
'@angular/platform-browser-dynamic',
'@angular/router',
'zone.js/dist/zone',
];
const nonTreeShakableModules = [
'jquery',
'jquery-sparkline',
'.\\node_modules\\jquery-sparkline\\jquery.sparkline.js',
'@angular/material',
'event-source-polyfill',
'.\\wwwroot\\assets\\styles\\style.scss',
'.\\node_modules\\chartist\\dist\\chartist.css',
'.\\node_modules\\quill\\dist\\quill.snow.css',
'.\\node_modules\\quill\\dist\\quill.bubble.css',
'.\\node_modules\\angular-calendar\\css\\angular-calendar.css',
'.\\node_modules\\dragula\\dist\\dragula.css',
'.\\ClientApp\\styles.css',
];
const allModules = treeShakableModules.concat(nonTreeShakableModules);
module.exports = (env) => {
const isDevBuild = !(env && env.prod);
const sharedConfig = {
stats: { "modules": true
},
resolve: {
extensions: ['.js'],
},
module: {
rules: [
{ test: /\.(png|woff|woff2|eot|ttf|svg)(\?|$)/, use: 'url-loader?limit=100000' }
]
},
output: {
publicPath: 'dist/',
filename: '[name].js',
library: '[name]_[hash]'
},
plugins: [
new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' }), // Maps these identifiers to the jQuery package (because Bootstrap expects it to be a global variable)
new webpack.ContextReplacementPlugin(/\@angular\b.*\b(bundles|linker)/, path.join(__dirname, './ClientApp')), // Workaround for https://github.com/angular/angular/issues/11580
new webpack.ContextReplacementPlugin(/angular(\\|\/)core(\\|\/)@angular/, path.join(__dirname, './ClientApp')), // Workaround for https://github.com/angular/angular/issues/14898
new webpack.ContextReplacementPlugin(/\@angular(\\|\/)core(\\|\/)esm5/, path.join(__dirname, './ClientApp')), // Workaround for https://github.com/angular/angular/issues/20357
new webpack.IgnorePlugin(/^vertx$/) // Workaround for https://github.com/stefanpenner/es6-promise/issues/100
]
};
const clientBundleConfig = merge(sharedConfig, {
entry: {
// To keep development builds fast, include all vendor dependencies in the vendor bundle.
// But for production builds, leave the tree-shakable ones out so the AOT compiler can produce a smaller bundle.
vendor: isDevBuild ? allModules : nonTreeShakableModules
},
output: { path: path.join(__dirname, 'wwwroot', 'dist') },
module: {
rules: [
{
test: /\.scss$/, use: ['to-string-loader', 'css-loader', 'sass-loader']
},
{
test: /\.css$/, use: ['to-string-loader', isDevBuild ? 'css-loader' : 'css-loader?minimize']
},
//{
//test: /\.scss$/, use: ExtractTextPlugin.extract({
// use: ['css-loader', 'sass-loader'],
// // use style-loader in development
// fallback: "style-loader"
//})
//}
]
},
plugins: [
new webpack.DllPlugin({
context: __dirname,
path: path.join(__dirname, 'wwwroot', 'dist', '[name]-manifest.json'),
name: '[name]_[hash]'
})
].concat(isDevBuild ? [] : [
new webpack.optimize.UglifyJsPlugin()
])
});
const serverBundleConfig = merge(sharedConfig, {
target: 'node',
resolve: { mainFields: ['main'] },
entry: { vendor: allModules.concat(['aspnet-prerendering']) },
output: {
path: path.join(__dirname, 'ClientApp', 'dist'),
libraryTarget: 'commonjs2',
},
module: {
rules: [
{
test: /\.scss$/, use: ['to-string-loader', 'css-loader', 'sass-loader']
},
{
test: /\.css$/, use: ['to-string-loader', isDevBuild ? 'css-loader' : 'css-loader?minimize']
},
//{
//test: /\.scss$/, use: ExtractTextPlugin.extract({
// use: ['css-loader', 'sass-loader'],
// // use style-loader in development
// fallback: "style-loader"
//})
//}
]
},
plugins: [
new webpack.DllPlugin({
context: __dirname,
path: path.join(__dirname, 'ClientApp', 'dist', '[name]-manifest.json'),
name: '[name]_[hash]'
})
]
});
return [clientBundleConfig, serverBundleConfig];
}
这是我的 webpack.config.js 代码。
const path = require('path');
const webpack = require('webpack');
const merge = require('webpack-merge');
const AngularCompilerPlugin = require('@ngtools/webpack').AngularCompilerPlugin;
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = (env) => {
// Configuration in common to both client-side and server-side bundles
const isDevBuild = !(env && env.prod);
const sharedConfig = {
stats: { modules: true },
context: __dirname,
resolve: { extensions: ['.js', '.ts'] },
output: {
filename: '[name].js',
publicPath: 'dist/' // Webpack dev middleware, if enabled, handles requests for this URL prefix
},
module: {
rules: [
{
test: /\.ts$/, use: isDevBuild ? ['awesome-typescript-loader?silent=true', 'angular2-template-loader', 'angular2-router-loader'] : '@ngtools/webpack'
},
{
test: /\.html$/, use: 'html-loader?minimize=false'
},
{
test: /\.css$/, use: ['to-string-loader', isDevBuild ? 'css-loader' : 'css-loader?minimize']
},
//{
// test: /\.scss$/, use: ExtractTextPlugin.extract({
// use: ['css-loader', 'sass-loader'],
// // use style-loader in development
// fallback: "style-loader"
// })
//},
{
test: /\.scss$/, use: ['to-string-loader', 'css-loader', 'sass-loader']
},
{
test: /\.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000'
}
]
},
plugins: [
new ExtractTextPlugin({ filename: 'vendor.css', disable: false, allChunks: true }),
new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' }), // Maps these identifiers to the jQuery package (because Bootstrap expects it to be a global variable)
new CheckerPlugin()
]
};
// Configuration for client-side bundle suitable for running in browsers
const clientBundleOutputDir = './wwwroot/dist';
const clientBundleConfig = merge(sharedConfig, {
entry: {
'main-client': './ClientApp/boot.browser.ts'
},
output: { path: path.join(__dirname, clientBundleOutputDir) },
plugins: [
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(clientBundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
})
] : [
// Plugins that apply in production builds only
new webpack.optimize.UglifyJsPlugin(),
new AngularCompilerPlugin({
tsConfigPath: './tsconfig.json',
entryModule: path.join(__dirname, 'ClientApp/app/components/app.browser.module#AppModule'),
exclude: ['./**/*.server.ts']
})
])
});
// Configuration for server-side (prerendering) bundle suitable for running in Node
const serverBundleConfig = merge(sharedConfig, {
resolve: { mainFields: ['main'] },
entry: { 'main-server': './ClientApp/boot.server.ts' },
plugins: [
new webpack.DllReferencePlugin({
context: __dirname,
manifest: require('./ClientApp/dist/vendor-manifest.json'),
sourceType: 'commonjs2',
name: './vendor'
})
].concat(isDevBuild ? [] : [
// Plugins that apply in production builds only
new AngularCompilerPlugin({
tsConfigPath: './tsconfig.json',
entryModule: path.join(__dirname, 'ClientApp/app/app.server.module#AppModule'),
exclude: ['./**/*.browser.ts']
})
]),
output: {
libraryTarget: 'commonjs',
path: path.join(__dirname, './ClientApp/dist')
},
target: 'node',
devtool: 'inline-source-map'
});
return [clientBundleConfig, serverBundleConfig];
};
我已经包含了 jquery-sparkline,但我仍然收到该错误。我可以在 vendor.js 中看到迷你图代码,但它似乎没有任何区别。
我还查看了 vendor list 文件,它包含这个但没有提到迷你图。
"./node_modules/jquery-sparkline/jquery.sparkline.js":{
"id":101,
"meta":{
}
}
我也不明白为什么我必须将下面的 ProvidePlugin 放在两个文件中。当然一次应该足够了,但是当它只在 vendor 文件中时,我收到浏览器错误,说它找不到 $。
new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' })
如有任何帮助,我们将不胜感激!
谢谢
最佳答案
看起来您正在使用 angular-netcore。
在这种情况下,您需要为迷你图安装types
,因为还没有准备好,您必须创建一个。
ClientApp/typings/sparkline/index.d.ts
index.d.ts
// Generated by typings
// Source: ClientApp/typings/sparkline/index.d.ts
interface JQuery {
sparkline(values?: string | Array<(string | number)>, opts?: sparkline.Settings): any;
}
declare namespace sparkline {
interface Settings {
type?: string;
barColor?: string;
width?: string | number;
height?: string;
lineColor?: string;
fillColor?: string | number;
chartRangeMin?: string | number;
chartRangeMax?: string | number;
composite?: boolean;
enableTagOptions?: boolean;
tagOptionPrefix?: string;
tagValuesAttribute?: string;
disableHiddenCheck?: boolean;
}
}
接下来你需要向全局声明:
typings install --global --save file:./ClientApp/typings/sparkline/index.d.ts
如果你没有typings
,你可以安装
yarn install typings
最后将 jquery-sparkline
添加到 boot.browser.ts
boot.browser.ts
import 'reflect-metadata';
import 'zone.js';
import 'bootstrap';
import 'jquery-sparkline';
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.browser.module';
...
因为 boot.browser.ts
是客户端包的配置,适合在浏览器中运行。
!!!重要
不要将 import 'jquery-sparkline';
放入应用程序/组件,因为我们不想注入(inject)到 boot.server
(会抛出错误原因服务器端预渲染)。
此处需要完整的代码示例:dotnet-core-angular-sparkline
关于javascript - 在 webpack 中包含 jquery-sparkline,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49440674/
我正在使用这个 jquery 插件来显示迷你图,http://www.omnipotent.net/jquery.sparkline . 工作完美,除非 linevalues 上有负值,它只显示“-,
使用 jQuery Sparklines v2.1.2 ,我正在创建一个 堆积条形图 . 工具提示值显示正确。它将列名称显示为每个小块的工具提示。我应该如何为每个小块自定义工具提示? tooltipF
我目前在使用名为 jQuery Sparklines by Gareth Watts 的软件包时遇到问题. 有人对这个包有任何经验吗?它似乎已经过时了,但有些人仍然在这里使用.. 我正在使用常规 ol
我有以下代码(基于 this page ): $(function() { alert($('.test').html()); $('.test').sparkline(); }
查看sample graphs在 jQuery Sparklines 页面上,您可以看到有一个 fillColor 属性,可用于填充线条下方的区域。但是,有没有办法指定图形线上方的填充颜色? 最佳答案
http://omnipotent.net/jquery.sparkline 这是我的代码 $("#sparkline-1").sparkline([5, 6, 7], {
我们正在使用这个出色的插件来制作一些小型迷你图。 我遇到的问题是更改迷你图的颜色、大小等。文档非常简短。 我们使用线形图和条形图。 请有人给我指出正确的方向。或者使用自定义颜色和尺寸配置为我们需要的迷
我有一个包含数据单元格和 =sparkline() 单元格图表的 Google 表格,我想通过电子邮件发送此数据 View 。我目前使用 Apps 脚本制作 HTML 电子邮件,但迷你图在电子邮件的表
我正在实现jQuery Sparklines我正在开发的网络应用程序的插件。我想向饼图值添加标签,这样当您将鼠标悬停在该特定图表上时,您将看到“汽车 (25%)”,而不是默认的 int 值“1” (2
下面是我用来尝试生成 highcharts 迷你图的整个文档: var sparkOptions = { title: { text: '' }, credi
有没有办法更改 jQuery Sparklines 中工具提示的默认背景颜色?我无法找到一个简单的解决方案,并且迷你图工具提示似乎没有类似的问题。我想将背景颜色从透明的默认颜色更改为纯灰色。 我正在使
我想使用这个highcharts演示代码:http://www.highcharts.com/demo/sparkline 但是工具提示在演示页面上看起来不正确。有谁知道如何修复它? 非常感谢! 最佳
背景 我正在使用 jquery.sparkline生产Pie Charts .饼图的数据包含在一个数组中。 当页面首次加载时,调用网络服务(使用 .ajax)来获取数据,那里指定的回调获取接收到的数据
我正在使用 JQuery Sparklines ( http://omnipotent.net/jquery.sparkline ) 来显示折线图,其中图中的每个刻度对应于当天的一个小时间隔。我已将工
我在页面中使用了 jQuery 迷你图 ( http://omnipotent.net/jquery.sparkline/ )。如果容器 DIV 不够大无法显示它,这会在 IE 中给我带来问题,尝试使
我正在尝试将 NVD3 与 d3.js 结合使用来制作简单的迷你图。我已经使用 .csv 数据成功创建了多个迷你图,但是当我尝试使用不同的数据集时,它给出了一个看起来非常奇怪的迷你图。请参阅here
我第一次尝试使用 webpack 时遇到了困难。 我在浏览器控制台中收到以下错误。 ERROR TypeError: $(...).sparkline is not a function 这是我的 w
我编写了一个 SQL 查询,它告诉我上周最常见的 10 个警报的名称。我编写了一个查询,获取前 10 个警报,并为每个警报提供年初至今的每周总计。 现在,我希望创建一个迷你图面板,显示本周前 10 个
我正在尝试实现 Sparkline JavaScript package在我的 Laravel 5.8 项目中使用 Laravel Mix。迷你图不会显示,我收到以下浏览器控制台错误。 Uncaugh
我正在尝试使用 jquery sparkline 和 mysql 数据来显示每个用户每天赚多少钱......在这里,我向您展示了关于 mysql 数据库中的一个用户示例的钱: [{"m":"01 no
我是一名优秀的程序员,十分优秀!