-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Taro Next] 统一的静态资源引入方式(本地图片、Image、backgroundImage in Css) #6148
Comments
CC @Littly |
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
@charmtiger 微信不支持 wxss 中获取本地资源。 你可以配置一下 mini.imageUrlLoaderOption,将 limit 设高一些,被 urlLoader 处理成 base64。太大的图片还是走网络获取吧。 mini: {
imageUrlLoaderOption: {
limit: 10240
}
} |
嗯,用量不多,手动转base64了。 |
这是什么写法呢?用 import 在小程序和 h5 都正常: import React, { Component } from 'react'
import { View, Text, Image } from '@tarojs/components'
import './index.scss'
import './detail.sass'
import Bg from './bg.png'
export default class Index extends Component {
render () {
return (
<View className='index'>
<Image src={Bg}></Image>
</View>
)
}
} |
import 加载本地图片 不就是这样写的吗 |
所以没懂你的第二点是什么意思。。 |
import 加载没问题,我主要是说 require 在 小程序 和 h5 中的用法不同,一个需要 .default , 一个不用 |
@charmtiger 因为 h5 用了 3.0 的 url-loader,小程序用的还是 2.0,而 3.0 有个 Breaking Changes,默认设置了 esModule 为 true。 之后会都改用 3.0,意思默认都需要 require().default。当然你也可以改 mini.imageUrlLoaderOption 的 esModule 为 false。 |
可以的,我认为如果需要用户自己配置的话,应该在文档中体现出来 |
各 loader 的详细配置默认都是跳到 loader 自己的文档浏览 |
好的 |
问题描述
The text was updated successfully, but these errors were encountered: