<legend id="h4sia"></legend><samp id="h4sia"></samp>
<sup id="h4sia"></sup>
<mark id="h4sia"><del id="h4sia"></del></mark>

<p id="h4sia"><td id="h4sia"></td></p><track id="h4sia"></track>

<delect id="h4sia"></delect>
  • <input id="h4sia"><address id="h4sia"></address>

    <menuitem id="h4sia"></menuitem>

    1. <blockquote id="h4sia"><rt id="h4sia"></rt></blockquote>
      <wbr id="h4sia">
    2. <meter id="h4sia"></meter>

      <th id="h4sia"><center id="h4sia"><delect id="h4sia"></delect></center></th>
    3. <dl id="h4sia"></dl>
    4. <rp id="h4sia"><option id="h4sia"></option></rp>

        APP JS-SDK接口

        分享

        应用场景:用于接入方服务模块中咨询新闻、服务的推广,调用微信,微信朋友圈,钉钉分享功能。

        Js引入:

        html界面引入

        https://js.cdn.aliyun.dcloud.net.cn/dev/uni-app/uni.webview.1.5.2.js

        调用方法:

        点击事件

        var parameters = {
        "mTitle": "分享标题",
        "mContent":"分享描述",
        "mThumbUrl": "分享小图标URL",
        "mUrl":encodeURIComponent("分享链接URL ")
        };
        
        uni.navigateTo({
        url:'/pages/three-parties-ability/three-parties-ability?abilityType=share&shareType=wx&¶meters='+JSON.stringify(parameters)
        })

        shareType 分享的类型, wx(微信), WXSenceTimeline(微信朋友圈), dd(钉钉)

        parameters 分享参数, 分享的URL后面带参数必须使用encodeURIComponent转码