热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

android模拟分享到微信朋友圈,uniapp实现Android分享到微信朋友圈和微信好友

分享到微信群或好友清空以上信息里客云科技开发exportdefault{data(){return{}},执行事件methods:{formSubmit:function(e){v

分享到微信群或好友

清空以上信息

里客云科技开发

export default {

data() {

return {}

},

// 执行事件

methods:{

formSubmit:function(e){

var title = e.detail.value.title;

var miaoshu = e.detail.value.miaoshu;

var imgurl = e.detail.value.imgurl;

var url = e.detail.value.url;

uni.share({

provider: "weixin",

scene: "WXSceneSession",

type: 0,

href: url,

title: title,

summary: miaoshu,

imageUrl: imgurl,

success: function (res) {

console.log(JSON.stringify(res));

uni.showToast({

title: '已分享',

duration: 2000

});

},

fail: function (err) {

var errrr = JSON.stringify(err);

if(errrr){

uni.showModal({

title: '表单不能留空',

content: '请完善所有信息再发起分享',

success: function (res) {

if (res.confirm) {

console.log('用户点击确定');

} else if (res.cancel) {

console.log('用户点击取消');

}

}

});

}

}

});

},

},

}

*{margin: 0;padding: 0;}

.content{

width: 100%;

margin: 20px auto;

}

.content .uni-input{

width: 80%;

height: 45px;

margin: 8px auto;

border: 1px solid #ccc;

margin-bottom: 8px;

padding-left: 8px;

border-radius: 10px;

font-size: 16px;

color: #333;

}

.content button{

width: 80%;

height: 45px;

line-height: 45px;

margin: 8px auto;

border: 1px solid #ccc;

margin-bottom: 8px;

padding-left: 8px;

border-radius: 10px;

font-size: 16px;

color: #fff;

background: #56b273;

border: none;

}

button::after{ border: none;}

.content .banquan{

text-align: center;

margin-top: 50px;

font-size: 15px;

color: #666;

}



推荐阅读
author-avatar
日月星辰淡定鍀好男孩_933
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有