uni.loadFontFace(options)
动态加载网络字体
loadFontFace 兼容性
Web | Android | iOS |
4.0 | √ | 4.10 |
参数
名称 | 类型 | 必填 | 默认值 | 兼容性 | 描述 |
options | LoadFontFaceOptions | 是 | - | - | - |
名称 | 类型 | 必备 | 默认值 | 兼容性 | 描述 | global | boolean | 否 | - | | 是否全局生效。微信小程序 '2.10.0'起支持全局生效,需在 app.vue 中调用。 | family | string | 是 | - | | 定义的字体名称 | source | string | 是 | - | | 字体资源的地址, App-Android 平台不支持 woff、woff2 格式字体文件 | desc | LoadFontFaceOptionDesc | 否 | - | | 可选的字体描述符 | 名称 | 类型 | 必备 | 默认值 | 兼容性 | 描述 | style | string | 否 | - | - | | weight | string | 否 | - | - | | variant | string | 否 | - | - | |
| success | (result: AsyncApiSuccessResult) => void | 否 | - | | 接口调用成功的回调函数 | fail | (error: LoadFontFaceFail) => void | 否 | - | | 接口调用失败的回调函数 | complete | (res: AsyncApiResult) => void | 否 | - | | 接口调用结束的回调函数(调用成功、失败都会执行) |
|
AsyncApiSuccessResult 的属性值
名称 | 类型 | 必备 | 默认值 | 兼容性 | 描述 |
errMsg | string | 是 | - | - | - |
LoadFontFaceFail 的属性值
名称 | 类型 | 必备 | 默认值 | 兼容性 | 描述 |
errCode | number | 是 | - | - | 错误码 |
合法值 | 兼容性 | 描述 | 4 | - | 框架内部异常 | 99 | - | page is not ready | 101 | - | 参数错误 | 100001 | - | family is null | 100002 | - | source is null | 200001 | - | local font not found | 300001 | - | same source task is loading | 300002 | - | download fail |
|
errSubject | string | 是 | - | - | 统一错误主题(模块)名称 |
data | any | 否 | - | - | 错误信息中包含的数据 |
cause | Error | 否 | - | - | 源错误信息,可以包含多个错误,详见SourceError |
errMsg | string | 是 | - | - | - |
AsyncApiResult 的属性值
名称 | 类型 | 必备 | 默认值 | 兼容性 | 描述 |
errMsg | string | 是 | - | - | - |
返回值
类型 | 必备 |
Promise<AsyncApiSuccessResult> | 否 |
名称 | 类型 | 必备 | 默认值 | 兼容性 | 描述 | errMsg | string | 是 | - | - | - |
|
注意事项
- app-ios 平台加载字体一定是全局生效,不支持通过global属性设置为非全局生效
- source 属性指定自定义字体路径,支持本地文件路径、远程地址,app 平台 4.33 版本开始支持 base64 格式数据;必须使用
url()
包裹。可能某些平台不包裹也可以生效,但标准规范是包裹,按标准写法才能全端生效。如下:
不同平台支持的字体格式不同,另见css字体
示例
hello uni-app x
参见
通用类型
GeneralCallbackResult
名称 | 类型 | 必备 | 默认值 | 兼容性 | 描述 |
errMsg | string | 是 | - | - | 错误信息 |