如何在 Vite 与 React 中使用带有 @ 符号的内联样式 backgroundImage URL?

如何在 vite 与 react 中使用带有 @ 符号的内联样式 backgroundimage url?

如何在 vite 搭配 react 中使用带有 @ 符号的内联样式 backgroundimage url

在 vite 与 react 中,通过内联样式设置 backgroundimage 时,需要找到一种方法将 @ 符号解析为绝对路径。

解决方案:

使用 require 函数或 import 语句在脚本中动态加载图像,并将其传递给 backgroundimage 属性:

<div style={{ backgroundimage: `url(${require('@/assets/1.jpg')})` }}>asdsa</div>

如果 vite 不支持 require,可以改用 import 来导入图片:

import image from '@/assets/1.jpg';

<div style={{ backgroundImage: `url(${image})` }}>asdsa</div>

注意:

  • require 函数或 import 语句必须在组件的函数作用域内使用。
  • require 函数仅在构建时有效,在开发模式下不工作。

以上就是如何在 Vite 与 React 中使用带有 @ 符号的内联样式 backgroundImage URL?的详细内容,更多请关注其它相关文章!