我正在上传更少的代码,因为我认为它已经足够了
询问是否需要更多来查找错误
async componentDidMount(){
var image = this.props.data.img
console.log(this.props.data.img == './../images/thumbnails/g.png') // true
console.log(this.props.data.img === './../images/thumbnails/g.png') // true
console.log(typeof(this.props.data.img))
await import(image)
.then((res)=>{
console.log(res)
this.setState({img:res})
})
.catch((e)=>{
console.log(this.props.data.img)
console.log(e)
})
}
我正在尝试导入图像。
当我使用import('./../images/thumbnails/g.png)
它时,它运行成功,但是当我传递与道具相同的值并尝试导入它时,它通过错误(找不到模块)。
我记录了这些值,所有的结果都是真的,意味着字符串和道具字符串是相同的,那么为什么我会得到 2 种不同的行为?