plusWWeixinShare

分享到微信 图文链接模式 --- ```javascript phoenix.plusWWeixinShare({ msg: { // 分享图文链接模式(所有值必须填写) // thumbs:分享消息中包含的缩略图路径,支持本地路径及网络路径,图片须小于20Kb // WXSceneSession分享给我的好友 "WXSceneTimeline"分享到朋友圈 "WXSceneFavorite"分享到我的收藏 type: 'web', title: '金易云APP开发', content: '金易云-专注于高端定制化的网络互动项目实施,致力于网站微信开发、移动互联、APP开发十一年!', thumbs: ['http://www.jinyiyun.com.cn/images/bottom_weixin.jpg'], href: 'http://m.jinyiyun.com.cn', extra:{ scene: "WXSceneSession", } }, success: function() {// 分享成功回调,可选 alert('分享成功'); }, error: function(message) {// 分享失败回调,可选 new phoenix.dialog({ text: message }); } }); ``` 分享到微信 图片 --- ```javascript phoenix.plusWWeixinShare({ msg: { // 分享图片模式(所有值必须填写) // pictures:分享消息中包含的图片路径,仅支持本地路径 type: 'image', pictures: ['http://www.jinyiyun.com.cn/images/bottom_weixin.jpg'] }, success: function() {// 分享成功回调,可选 alert('分享成功'); }, error: function(message) {// 分享失败回调,可选 new phoenix.dialog({ text: message }); } }); ```