- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
从Webpack 1升级到2后出现错误,配置没改,之前没有错误。请帮忙!谢谢!
网络包配置:
const path = require('path');
const root = path.resolve(__dirname);
const webpack = require('webpack');
const merge = require('webpack-merge');
const ArchivePlugin = require('webpack-archive-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
let config = {
cache: true,
devtool: 'cheap-module-source-map',
entry: {
polyfills: './src/polyfills.browser.ts',
vendor: './src/vendor.browser.ts',
main: './src/main.browser.ts'
},
output: {
path: path.join(__dirname, 'dist/output'),
filename: '[name].bundle.js',
sourceMapFilename: '[name].map',
chunkFilename: '[id].chunk.js'
},
resolve: {
extensions: ['.ts', '.js'],
alias: {jquery: 'jquery/dist/jquery'}
},
devServer: {
inline: true,
contentBase: 'src',
historyApiFallback: true,
watchOptions: {aggregateTimeout: 300, poll: 1000}
},
node: {
net: 'empty',
global: true,
crypto: 'empty',
module: false,
Buffer: false,
clearImmediate: false,
setImmediate: false
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: ['main', 'vendor', 'polyfills'],
minChunks: Infinity
}),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery"
}),
new webpack.DefinePlugin({
"require.specified": "require.resolve"
})
],
module: {
exprContextCritical: false,
rules: [{
test: /\.ts$/,
loaders: ['awesome-typescript-loader', 'angular2-template-loader']
}, {
test: /\.css$/,
loaders: ['to-string-loader', 'style-loader', 'css-loader']
}, {
test: /\.scss$/,
loaders: ["style-loader", "css-loader", "sass-loader"]
}, {
test: /\.json$/,
loader: 'raw-loader'
}, {
test: /\.html$/,
loader: 'raw-loader'
}, {
test: /\.(png|jpg|gif)(\?v=\d+\.\d+\.\d+)?$/,
loader: 'url-loader?limit=100000'
}, {
test: /\.(eot|com|json|ttf|woff|woff2)(\?v=\d+\.\d+\.\d+)?$/,
loader: "url-loader?limit=10000&mimetype=application/octet-stream"
}, {
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
loader: 'url-loader?limit=10000&mimetype=image/svg+xml'
}]
},
};
if (process.argv[1].indexOf('webpack-dev-server') === -1) {
module.exports = merge(config, {
plugins: [
new CleanWebpackPlugin(['dist']),
new ArchivePlugin(),
new webpack.optimize.UglifyJsPlugin({output: {comments: false}})
]
});
} else {
module.exports = config;
}
这些是控制台中显示的错误。
vendor.bundle.js:57220
EXCEPTION: Uncaught (in promise): Error: The requested path contains undefined segment at index 0
Error: The requested path contains undefined segment at index 0
at validateCommands (http://localhost:3000/vendor.bundle.js:23790:19) [angular]
at Router.navigate (http://localhost:3000/vendor.bundle.js:22872:9) [angular]
at http://localhost:3000/main.bundle.js:15346:30 [angular]
at Object.onInvoke (http://localhost:3000/vendor.bundle.js:29990:37) [angular]
at Zone.run (http://localhost:3000/polyfills.bundle.js:17067:43) [angular => angular]
at http://localhost:3000/polyfills.bundle.js:17474:57 [angular]
at Object.onInvokeTask (http://localhost:3000/vendor.bundle.js:29981:37) [angular]
at ZoneDelegate.invokeTask (http://localhost:3000/polyfills.bundle.js:17228:40) [angular]
at Zone.runTask (http://localhost:3000/polyfills.bundle.js:17105:47) [<root> => angular]
at drainMicroTaskQueue (http://localhost:3000/polyfills.bundle.js:17372:35) [<root>]
at HTMLButtonElement.ZoneTask.invoke (http://localhost:3000/polyfills.bundle.js:17303:25) [<root>]
ErrorHandler.handleError @ vendor.bundle.js:57225
vendor.bundle.js:57225
ORIGINAL STACKTRACE:
ErrorHandler.handleError @ vendor.bundle.js:57225
vendor.bundle.js:57226
Error: Uncaught (in promise): Error: The requested path contains undefined segment at index 0
Error: The requested path contains undefined segment at index 0
at validateCommands (vendor.bundle.js:23790) [angular]
at Router.navigate (vendor.bundle.js:22872) [angular]
at :3000/main.bundle.js:15346:30 [angular]
at Object.onInvoke (vendor.bundle.js:29990) [angular]
at Zone.run (polyfills.bundle.js:17067) [angular => angular]
at :3000/polyfills.bundle.js:17474:57 [angular]
at Object.onInvokeTask (vendor.bundle.js:29981) [angular]
at ZoneDelegate.invokeTask (polyfills.bundle.js:17228) [angular]
at Zone.runTask (polyfills.bundle.js:17105) [<root> => angular]
at drainMicroTaskQueue (polyfills.bundle.js:17372) [<root>]
at HTMLButtonElement.ZoneTask.invoke (polyfills.bundle.js:17303) [<root>]
at resolvePromise (polyfills.bundle.js:17440) [angular]
at :3000/polyfills.bundle.js:17477:17 [angular]
at Object.onInvokeTask (vendor.bundle.js:29981) [angular]
at ZoneDelegate.invokeTask (polyfills.bundle.js:17228) [angular]
at Zone.runTask (polyfills.bundle.js:17105) [<root> => angular]
at drainMicroTaskQueue (polyfills.bundle.js:17372) [<root>]
at HTMLButtonElement.ZoneTask.invoke (polyfills.bundle.js:17303) [<root>]
ErrorHandler.handleError @ vendor.bundle.js:57226
***** 我必须添加这些行才能发布这个问题,涉及的代码太多了 *****
最佳答案
我发现发生了什么事。不是webpack,而是Angular2的变化
我正在尝试运行 this.router.navigate([redirectUrl]);
而 redirectUrl
是 undefined
。它导致了错误。
关于javascript - 升级到 Webpack 2 后出错。请求的路径在索引 0 处包含未定义的段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42080752/
这个问题已经有答案了: What is the difference between a variable, object, and reference? [duplicate] (5 个回答) 已关
我正在使用以下代码来学习java套接字编程。它的作用是,client.java 程序从用户那里获取一个号码并将其发送到 sever.java。然后服务器将其乘以2并发回给客户端。在我的客户端程序中,它
我编写了一个自己开发的串行端口类,为了简单起见,我使用了阻塞/同步/非重叠。我浏览了所有 MSDN 文档,这对我来说很困难。 我在从端口打开、传输或接收字节方面没有任何问题。所有操作都是同步并且没有线
//Not finished -- disregard function evaluate() { var cdate = new Date(); var cday = cdate.getDa
我已经尝试过了,但它有效 例如: x= 523.897 y= x[0:"."] print y 我只想打印 523。如何让 Python 抓取字符串直到某个字母或数字? 最佳答案 行 y = x[0:
我想移动拐 Angular 处的方框(从左上角开始水平移动 Angular 落到右上角然后你去到右下角。 function myMove() { var elem = document.getEl
如何让侧边栏停止在第二个侧边栏部分而不是顶部? fiddle http://jsfiddle.net/EvAdP/2/ HTML I'm the header
我刚刚在大学开始我的第二门编程类(class),我们的第一个作业相当简单,旨在基本上检查我们的环境并检查我们是否知道如何通过类(class)网站提交作业。 当我运行我们提供的代码时,它卡在应该提示用户
我目前正忙于我的这个信息学元素(构建一个示例交友网站)。问题是我在把所有东西都放在正确的地方时遇到了一些麻烦。一切都很顺利,直到我的邮箱出现在错误的位置(但是,Dreamweaver 会按照我的意
我想,和你一样hover a GIF shot on Dribbble , 当光标位于元素高度顶部之后/50% 处时显示带有信息的 div。 测试示例 我做了这个,这是有效的,但有点棘手......特
我有一个下拉菜单,并且我已将 mouseenter 设置为选项。因此,如果鼠标位于触发器之外,菜单应该关闭。我正在使用 jQuery 1.8.0。这可能是 CSS 问题吗? 这是我初始化插件的代码。
我正在尝试在 Visual Basic for Applications 中编写一个 hello world 应用程序,即修改 Excel 工作表中的单元格。这是: Sub hello() D
我的应用程序使用 JSF 2.1 和 PrimeFaces。最近,由于一些线程卡住,观察到 CPU 利用率非常高。所有卡住线程的卡住线程转储都指向 javax.faces.component.UICo
在列出 aws cognito 用户时,我的 Node js 应用程序遇到问题。 仅当我有超过 60 个 Cognito 用户时才会出现此问题。 Reference of API 下面是我的代码片段。
我是 ubuntu 用户..我在 php 中有一个执行 python 文件的命令..python 文件设置为可执行文件..所以,我的 php 命令是:- shell_exec("try.py");
我正在尝试将剪贴板内容写入文件,但由于某种原因程序卡住了。 FILE *fp; fp = fopen("tmp.code","w"); fprintf(fp,getclip()); /*writes*
当用户向下滚动时,我使用此代码使侧边栏固定在某个 div 处。问题是我必须手动输入一个阈值数字,这并不总是理想的,因为该部分的位置可能会更改或在各种浏览器和系统之间不一致。我想知道是否有一种方法可以在
我有一个字符串数组,例如 first_page = {{"U","M","Y","Q","I","A","L","D","P"、"F"、"E"、"G"、"T"、"Z"、"V"、"W"、"H"、"O"、
我能否在页面上的特定 px 位置放置一个元素(例如图像),然后让文本围绕它流动? 必要时使用 JS/jquery。 我确实看到了这个Have text flow around an object th
第一次在这里提问。 我有两个简单的 Javascript 函数,1. 生成一个随机字母,2. 在每个单元格中使用单个字母填充 10x10 表格。创建表的主要函数是通过带有 onclick 的简单 HT
我是一名优秀的程序员,十分优秀!