我目前问自己这为什么起作用:
[NSScreen mainScreen]
这不起作用:
const imagePath = "a.jpg"
const aimg = require(`../../assets/images/${imagePath}`)
这些路径将应用于react组件的render方法中(使用jsx):
const imagePath = "../../assets/images/"
const aimg = require(`${imagePath}a.jpg`)
这是什么原因?从我的角度来看,这两种情况都只是附加一些字符串并将其传递给render() {
return (
<img src={aimg} />
)
}
方法。