# showToast ^6.8

显示 Toast

# 请求参数

Prop Type Required Default Comment
title String Y - 提示的内容
duration Number N 1.5 提示的延迟时间,单位秒。但不传值或者传值大于20时,延迟为1.5
bgStyle String N black black:黑底白字,默认值,white:白底黑字

# 接口调用示例

let params = {
  title: 'toast测试',
  duration: 3000,
  bgStyle: 'black',
}
this.$bridge
  .showToast(params)
  .then((res) => {
    //   this.$toast(res)
  })
  .catch((err) => {
    //   this.$toast(err)
  })
1
2
3
4
5
6
7
8
9
10
11
12
13

# 返回参数

# 返回示例

{
  code: 0,
  msg: 'success'
}
1
2
3
4
更新时间: 10/27/2022, 2:33:23 PM