convertLocalImageToBase64 转换本地图片成base64数据
convertLocalImageToBase64 ^7.10
转换本地图片成base64数据
#请求参数
| Prop | Type | Default | Comment |
|---|---|---|---|
| filePath | String | N/A | 图片路径(支持相对路径,全路径) |
#接口调用示例
const params = {
"filePath": ""
}
this.$bridge
.convertLocalImageToBase64(params)
.then(res => {
this.$alert(res)
})
.catch(err => {
this.$toast(err)
})
#接口返回示例
//成功出参:
{
errorCode:0,
base64: '图片base64数据'
}
浙公网安备 33010602011771号