Skip to content

Commit

Permalink
docs: ✏️ 增加支付宝小程序styleIsolation配置的文档
Browse files Browse the repository at this point in the history
  • Loading branch information
Moonofweisheng committed Mar 4, 2024
1 parent 18c09d8 commit 68d1262
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 14 deletions.
54 changes: 41 additions & 13 deletions docs/guide/common-problems.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 常见问题FAQ
# 常见问题 FAQ

本节介绍在开发过程当中遇到的部分 **常见问题** 以及 **解决办法**

Expand All @@ -7,17 +7,17 @@
目前支持 微信小程序、支付宝小程序、钉钉小程序、H5、APP 等平台。

## 组件库有没有提供可以单独引入的组件?
目前是没有的,首先在插件市场缺少`CI/CD`工具,无法实现自动化发布,维护一套单独引入的组件费时费力,其次组件库提供的安装方式均可以实现按需引入,所以是无需提供单独引入的组件的。

目前是没有的,首先在插件市场缺少`CI/CD`工具,无法实现自动化发布,维护一套单独引入的组件费时费力,其次组件库提供的安装方式均可以实现按需引入,所以是无需提供单独引入的组件的。

## 如何开启暗黑模式?

`Wot Design Uni`支持深色模式、主题定制等能力,详见[ConfigProvider 全局配置](/component/config-provider.html)组件。


## 小程序样式隔离

### 在页面中使用 Wot Design Uni 组件时,可直接在页面的样式文件中覆盖样式

```vue
<wd-button type="primary">主要按钮</wd-button>
```
Expand Down Expand Up @@ -56,7 +56,7 @@ export default {

什么?还有人想问:这样写还我怎么使用`script setup`啊!

***简单,这样写两个就行了***
**_简单,这样写两个就行了_**

```ts
<script lang="ts">
Expand All @@ -72,11 +72,13 @@ export default {
```

## 小程序使用外部样式类

Wot Design Uni 开放了大量的自定义样式类供开发者使用,具体的样式类名称可查阅对应组件的“外部样式类”部分。需要注意的是普通样式类和自定义样式类的优先级是未定义的,因此使用时请添加`!important`以保证外部样式类的优先级。

```vue
<wd-button custom-class="custom-button" type="primary">主要按钮</wd-button>
```

```scss
/* 组件样式 */
:deep(.custom-button) {
Expand All @@ -85,7 +87,8 @@ Wot Design Uni 开放了大量的自定义样式类供开发者使用,具体
```

## 小程序自定义组件渲染问题
微信/QQ/百度/抖音这四家小程序,自定义组件在渲染时会比App/H5端多一级节点,下面以`divider`组件举例:

微信/QQ/百度/抖音这四家小程序,自定义组件在渲染时会比 App/H5 端多一级节点,下面以`divider`组件举例:

```vue
<!-- 使用 -->
Expand All @@ -101,11 +104,15 @@ Wot Design Uni 开放了大量的自定义样式类供开发者使用,具体
```

### 解决办法
在微信端可以使用[virtualHost](https://uniapp.dcloud.net.cn/tutorial/vue-api.html#%E5%85%B6%E4%BB%96%E9%85%8D%E7%BD%AE)解决,`virtualHost`设为`true`之后会将自定义节点设置成虚拟的,更加接近Vue组件的表现,可以去掉微信小程序自定义组件多出的最外层标签,启用后还可以通过 [mergeVirtualHostAttributes](https://uniapp.dcloud.net.cn/collocation/manifest.html#mp-weixin) 合并合并组件虚拟节点外层属性。

在微信端可以使用[virtualHost](https://uniapp.dcloud.net.cn/tutorial/vue-api.html#%E5%85%B6%E4%BB%96%E9%85%8D%E7%BD%AE)解决,`virtualHost`设为`true`之后会将自定义节点设置成虚拟的,更加接近 Vue 组件的表现,可以去掉微信小程序自定义组件多出的最外层标签,启用后还可以通过 [mergeVirtualHostAttributes](https://uniapp.dcloud.net.cn/collocation/manifest.html#mp-weixin) 合并合并组件虚拟节点外层属性。

```js
// vue2使用virtualHost
export default {
data(){ return { } },
data() {
return {}
},
options: {
virtualHost: true
}
Expand All @@ -125,7 +132,9 @@ export default {
<script lang="ts" setup>
</script>
```
### 启用virtualHost效果

### 启用 virtualHost 效果

这里我们还是以`divider`组件举例:

```vue
Expand All @@ -139,20 +148,39 @@ export default {
<view class="wd-divider"></view>
```


## 如何定制主题?

我们为每个组件提供了`css 变量`,可以参考[config-provider](../component/config-provider)组件的使用介绍来定制主题。

## Toast和MessageBox组件调用无效果?
## Toast 和 MessageBox 组件调用无效果?

首先要检查一下用法是否正确,`uni-app`平台不支持全局挂载组件,所以`Message``Toast`等组件仍需在 SFC 中显式使用,例如:

首先要检查一下用法是否正确,`uni-app`平台不支持全局挂载组件,所以```Message``````Toast```等组件仍需在SFC中显式使用,例如:
``` html
```html
<wd-toast></wd-toast>
```

```Message``````Toast```的函数式调用是基于`provide/inject`实现的,所以你的调用要确保在`setup`中。
`Message``Toast`的函数式调用是基于`provide/inject`实现的,所以你的调用要确保在`setup`中。

## 编译到支付宝小程序 Popup 组件的遮罩无法显示?

uni-app 3.99.2023122704 将支付宝小程序的`styleIsolation`默认值设置为了`apply-shared`,而支付宝小程序默认的`styleIsolation``shared`,所以导致更新到`3.99.2023122704`版本后,支付宝小程序自定义组件样式穿透无法生效,参见[issue](https://ask.dcloud.net.cn/question/187142)
解决办法:在`mainfest.json`中设置`styleIsolation``shared`

```json
{
// ...
"mp-alipay": {
// ...
"styleIsolation": "shared"
// ...
}
// ...
}
```

## 如何快速解决你的问题?

[提问的智慧](https://lug.ustc.edu.cn/wiki/doc/smart-questions/),可以帮助你快速提出正确的问题,获得更快的解答。

## 关于我们
Expand Down
3 changes: 2 additions & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
"mp-alipay": {
"darkmode": true,
"themeLocation": "theme.json",
"usingComponents": true
"usingComponents": true,
"styleIsolation": "shared"
},
"h5": {
"darkmode": true,
Expand Down

0 comments on commit 68d1262

Please sign in to comment.