在线图片预览
接口说明
打开在线图片预览界面。
HWH5.previewImage
请求参数
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
index | String | 是 | 类型,图片索引 |
imageArray | String | 是 | 预览的在线图片列表 |
watermark | boolean | 否 | 图片预览页面添加水印 |
返回结果
无。
请求示例
const images = [
'http://xxx.xxx.com/xxx/xxx1.jpg',
'http://xxx.xxx.com/xxx/xxx2.jpg',
'http://xxx.xxx.com/xxx/xxx3.jpg'
];
HWH5.previewImage({
index: '0',
imageArray: JSON.stringify(images),
watermark: true
}).catch(error => {
console.log('打开失败', error);
});
const images = [
'http://xxx.xxx.com/xxx/xxx1.jpg',
'http://xxx.xxx.com/xxx/xxx2.jpg',
'http://xxx.xxx.com/xxx/xxx3.jpg'
];
HWH5.previewImage({
index: '0',
imageArray: JSON.stringify(images),
watermark: true
}).catch(function (error) {
console.log('获取失败', error);
});