|
楼主 |
发表于 2016-10-21 15:49:16
|
显示全部楼层
- //分享到微信联系人
- Model.prototype.weixinContcatClick = function(event){
- function success(result) {
- // alert(JSON.stringify(result));
- justep.Util.hint("恭喜您,分享成功!");
- }
- function error(result) {
- justep.Util.hint(JSON.stringify(result));
- }
- var data = this.comp('postData');
-
- //url 处理
- var urlArray = window.location.href.split('#');
- var path = urlArray[0].replace(/index/,'detail');
- var webpageUrl = path + '?article_id=' + this.comp("postData").getValue("fID");
-
- navigator.weixin.share({
- message : {
- title : this.comp("postData").getValue("fName") ? this.comp("postData").getValue("fName") : "分享到微信 ",
- description : this.comp("postData").getValue("fOmit") ? this.comp("postData").getValue("fOmit") : "分享到微信",
- mediaTagName : "Media Tag Name(optional)",
- thumb : this.comp("postData").getValue("fImg") ? this.comp("postData").getValue("fImg") : "",
- media : {
- webpageUrl : webpageUrl
- }
- },
- scene : navigator.weixin.Scene.SESSION
- },success, error);
- };
-
- //分享到微信朋友圈
- Model.prototype.weixinShareBtnClick = function(event){
- var self = this;
- if (!navigator.weixin) {
- justep.Util.hint("请安装最新版本(含插件)体验!");
- return;
- }
- //url 处理
- var urlArray = window.location.href.split('#');
- var path = urlArray[0].replace(/index/,'detail');
- var webpageUrl = path + '?article_id=' + this.comp("postData").getValue("fID");
- var weixin = navigator.weixin;
- weixin.share({
- message: {
- title : this.comp("postData").getValue("fName") ? this.comp("postData").getValue("fName") : "分享到微信 ",
- description : this.comp("postData").getValue("fOmit") ? this.comp("postData").getValue("fOmit") : "分享到微信",
- mediaTagName : "Media Tag Name(optional)",
- thumb : this.comp("postData").getValue("fImg") ? this.comp("postData").getValue("fImg") : "",
- media:{
- webpageUrl : webpageUrl
- },
- },
- scene : weixin.Scene.TIMELINE
- },function() {
- justep.Util.hint("恭喜您,分享成功!");
- },function(reason){
- justep.Util.hint(reason);
- });
- };
复制代码
使用的仿网易的APP开发,其中的文章页增加了分享,在IOS中,微信分享在有的文章详情页可以正常分享,有的页面点击后没有反应;安卓中是正常的 |
|