react-photo-gallery软件包可以使用本地图像吗?在文档中,它提供了绝对URL作为图像源。该代码有效:-
const PHOTO_SET = [
{
src: require('../images/people/mel/pregnant1920.jpg'),
width: 3,
height: 4,
key: '0'
}
]
此代码不起作用:-
const PHOTO_SET = [
{
src: require('../images/people/mel/pregnant1920.jpg'),
srcSet: [
require('../images/people/mel/pregnant320 320w'),
],
sizes: ['(min-width: 480px) 50vw,(min-width:1024px) 33.3vw, 100vw'],
width: 3,
height: 4,
key: '0'
}
]
遵循文档但使用本地图像的操作也不是:-
const PHOTO_SET = [
{
src: '../images/people/mel/pregnant1920.jpg',
srcSet: [
'../images/people/mel/pregnant320 320w',
],
sizes: ['(min-width: 480px) 50vw,(min-width:1024px) 33.3vw, 100vw'],
width: 3,
height: 4,
key: '0'
}
]
如何解决此问题,因为我更喜欢使用srcSet和大小。