分享插件

构造函数

cmp.share

cmp.share
(
  • options
)

参数:

名称类型标识描述
options Object 必选

配置参数

名称类型标识描述
title String 必选

分享内容显示的标题

text String 必选

分享内容显示的内容

url String 必选

点击链接地址

imgUrl String 必选

需要显示的图片地址

success Function 必选

获取成功后的回调

error Function 必选

错误的回调

示例:

<script>
   cmp.share({
       title:"这是一个分享",
       text:"一大堆分享显示的内容文字",
       url:"http://www.baidu.com",
       imgUrl:"http://ddddd.png",
       success:function(networkDetail){
            //do something with networkDetail
       }
       error:function(error){}
   });
</script>
Top