Skip to content

Commit

Permalink
fix(doc): add docs for fontUrl in JSBundle path format
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyunong committed Oct 25, 2024
1 parent d587327 commit a83e7ce
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions docs/api/hippy-react/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,17 +283,17 @@ AsyncStorage 是一个简单的、异步的、持久化的 Key-Value 存储系

# FontLoaderModule

提供通过url动态下载远程字体的能力,下载的字体将保存在应用Cache目录下,由Hippy统一管理,可能被终端系统删除。常用字体不推荐使用该模块动态下载
提供通过url动态下载远程字体或者动态加载JSBundle包中字体的能力,下载的远程字体将保存在应用Cache目录下,由Hippy统一管理,可能被终端系统删除。常用字体不推荐使用该模块动态远程下载


## 方法

### FontLoaderModule.load

`(fontFamily: string, fontUrl: string) => Promise<void>` 通过fontUrl异步下载字体,下载完成后会刷新终端文本。
`(fontFamily: string, fontUrl: string) => Promise<string>` 通过fontUrl异步下载字体,下载完成后会刷新终端文本。

> - fontFamily - 下载字体的字体家族,用于保存文件
> - fontUrl - 下载字体的地址
> - fontFamily - 下载字体的字体家族,用于保存文件和检索字体文件
> - fontUrl - 下载字体的地址,可以是http网络地址,也可以本地文件地址或者以“hpfile://./”为前缀的JSbundle包中的相对地址
---

Expand Down
8 changes: 4 additions & 4 deletions docs/api/hippy-vue/vue-native.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,16 +292,16 @@ console.log(Vue.Native.getElemCss(this.demon1Point)) // => { height: 80, left: 0

# FontLoaderModule

提供通过url动态下载远程字体的能力,下载的字体将保存在应用Cache目录下,由Hippy统一管理,可能被终端系统删除。常用字体不推荐使用该模块动态下载
提供通过url动态下载远程字体或者动态加载JSBundle包中字体的能力,下载的远程字体将保存在应用Cache目录下,由Hippy统一管理,可能被终端系统删除。常用字体不推荐使用该模块动态远程下载

## 方法

### FontLoader.load

`(fontFamily: string, fontUrl: string) => Promise<void>` 通过fontUrl异步下载字体,下载完成后会刷新终端文本。
`(fontFamily: string, fontUrl: string) => Promise<string>` 通过fontUrl异步下载字体,下载完成后会刷新终端文本。

> * fontFamily - 下载字体的字体家族,用于保存文件
> * fontUrl - 下载字体的地址
> * fontFamily - 下载字体的字体家族,用于保存文件和检索字体文件
> * fontUrl - 下载字体的地址,可以是http网络地址,也可以本地文件地址或者以“hpfile://./”为前缀的JSbundle包中的相对地址
---

Expand Down
2 changes: 1 addition & 1 deletion docs/api/style/appearance.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@

# fontUrl

远程字体的url,会在渲染时异步动态下载
动态加载字体的url,会在渲染时异步动态加载,可以是远程字体地址或者是使用“hpfile://./”为前缀的JSBundle包中字体路径

| 类型 | 必需 | 支持平台 |
| ------------------------ | ---- | ------------ |
Expand Down

0 comments on commit a83e7ce

Please sign in to comment.