Skip to main content
Version: 下个版本

Taro.previewMedia(option)

预览图片和视频。

支持情况:

参考文档

类型

(option: Option) => Promise<TaroGeneral.CallbackResult>

参数

参数类型
optionOption

Sources

参数类型必填说明
urlstring图片或视频的地址
type"image" or "video"资源的类型(图片或视频),默认值:image
posterstring视频的封面图片

Option

参数类型必填说明
sourcesSources[]需要预览的资源列表
currentnumber当前显示的资源序号,默认值:0
showmenuboolean是否显示长按菜单 2.13.0,默认值:true
referrerPolicystringorigin: 发送完整的referrer; no-referrer: 不发送。格式固定为 https://servicewechat.com/{appid}/{version}/page-frame.html,其中 {appid} 为小程序的 appid,{version} 为小程序的版本号,版本号为 0 表示为开发版、体验版以及审核版本,版本号为 devtools 表示为开发者工具,其余为正式版本;默认值:no-referrer
complete(res: TaroGeneral.CallbackResult) => void接口调用结束的回调函数(调用成功、失败都会执行)
fail(res: TaroGeneral.CallbackResult) => void接口调用失败的回调函数
success(res: TaroGeneral.CallbackResult) => void接口调用成功的回调函数

示例代码

Taro.previewMedia({
sources: []
})