根据file-loader usage documentation,我应该可以加载图像:
test: /\.(png|jpg|gif)$/,
use: [
{
loader: 'file-loader',
options: {}
}
]
后来通过:
import img from './file.png';
这是我的webpack.config.js
:
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports = {
module: {
rules: [
{
test: /\.(png|jpg|gif)$/,
use: [
{
loader: 'file-loader',
options: {}
}
]
},
{
test: /\.glsl$/,
loader: 'webpack-glsl-loader'
},
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
},
{
test: /\.ts$/,
enforce: 'pre',
loader: 'tslint-loader',
options: { failOnHint: true }
}
]
},
resolve: {
extensions: [".tsx", ".ts", ".js"]
},
entry: {
app: './src/index.ts'
},
devtool: 'inline-source-map',
devServer: {
contentBase: './dist'
},
plugins: [
new CleanWebpackPlugin(['dist']),
new HtmlWebpackPlugin({
title: 'Output Manager'
})
],
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist'),
publicPath: '/'
}
};
这就是我创建dev-server
的方式:
const app = express();
const compiler = webpack(webpackConfig);
app.use(webpackDevMiddleware(compiler, {
publicPath: webpackConfig.output.publicPath,
}));
app.listen(3000, () => {
console.log('Listening on port 3000!\n');
});
此外我的src
结构是这样的:
src
|-images
| |- image.gif
|
|-app.ts
我正在尝试将图像加载到app.ts
中,如下所示:
import img from './images/image.gif';
// ...
private loadImage(): void {
const image = new Image();
image.src = img;
image.onload = () => {
};
}
不幸的是我得到了:
获取http://localhost:8080/undefined 404(未找到)
在Chrome的开发工具导航器中,我可以看到webpack://./src/images/image.gif
下的图像文件。内容如下:
module.exports = __webpack_public_path__ + "9b626fa0956bfa785b543ef53e895d5e.gif";
//////////////////
// WEBPACK FOOTER
// ./src/images/image.gif
// module id = 109
// module chunks = 0
另外,如果我在调试时将img
变量悬停,我可以看到名称字符串"/9b626fa0956bfa785b543ef53e895d5e.gif"
。记录变量会返回undefined
,但永远不会触发image.onload
。
如果我在浏览器中拨打http://localhost:8080/9b626fa0956bfa785b543ef53e895d5e.gif
,我可以看到图片。
我知道为什么我无法加载图像,虽然我可以在浏览器中看到它并且路径字符串似乎在那里?
编辑#1:
当我使用TypeScript时,我必须声明一个模块才能导入.gif
个文件:
declare module "*.gif" {
const content: any;
export default content;
}
然后我找到了这个Github issue,问题的解决方法就是导入import * as styles from "styles.scss"
这样的文件。所以我尝试导入如下:
import * as img from './images/img.gif';
不幸的是,结果是:
错误TS2322:类型'typeof“* .gif”'不能分配给类型 '字符串'
答案 0 :(得分:2)
我在这里看到两个问题。首先,您应该尝试加载像log.info("step 1");
driver.findElement(By.xpath("xpathExpression_of_button")).click();
new WebDriverWait(driver,5).until(ExpectedConditions.alertIsPresent());
log.info("step 2");
driver.switchTo().alert().accept();
new WebDriverWait(driver,5).until(ExpectedConditions.elementToBeClickable(driver.findElement(By.xpath("xpathExpression_of_nextButton")))).click();
这样的图像文件。您还必须在某处使用图像才能实际加载它。单独导入不会触发加载文件。但是简单的import * as img from './images/img.gif';
应该触发它。
第二个问题是你得到这个例外的原因:
错误TS2322:类型'typeof“* .gif”'不能分配给类型 '字符串'
您应该尝试包装导入文件的实际用法,如:
console.log(img);
这样就不会触发异常。
我希望这会有所帮助。
答案 1 :(得分:-1)
这是我的webpack配置的片段。这适用于加载图像。
{
test: /\.(gif|png|jpe?g)$/i,
exclude: [/node_modules/],
loaders: [
'file-loader?hash=sha512&digest=hex&name=[hash].[ext]',
'image-webpack-loader'
]
}