<script setup lang="ts">
//分享到QQ好友(PC端可用)
//自定义内容
const share = {
title: '分享测试',
desc: '测试描述',
image_url: [
'https://pic3.zhimg.com/80/v2-ab0718575cc9337b24bfc7578f5e6d32_720w.jpg',
],
share_url: 'https://xiucai.neafex.com/#/',
}
function shareToQQ() {
//此处分享链接内无法携带图片
window.open(
'https://connect.qq.com/widget/shareqq/index.html?url=' +
encodeURIComponent(share.share_url) +
'&title=' +
share.title +
'&desc=' +
share.desc
)
}
//分享到QQ空间(可用)
function shareToRoom() {
let image_urls = share.image_url.map(function (image) {
return encodeURIComponent(image)
})
//跳转地址
window.open(
'https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=' +
encodeURIComponent(share.share_url) +
'&title=' +
share.title +
'&pics=' +
image_urls.join('|') +
'&summary=' +
share.desc
)
}
//分享到微博(可用)
function shareToMicroblog() {
//跳转地址
window.open(
'https://service.weibo.com/share/share.php?url=' +
encodeURIComponent(share.share_url) +
'&title=' +
share.title +
'&pic=' +
share.image_url +
'&searchPic=true'
)
}
</script>
<template>
<p>欢迎使用</p>
<div style="margin-top: 100px">
<button @click="shareToQQ()">分享到QQ</button>
<button @click="shareToRoom()">分享到QQ空间</button>
<button @click="shareToMicroblog()">分享到微博</button>
</div>
</template>
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
微信小程序如何调起H5页面的支付?
微信小程序如何调起H5页面的支付
微信支付 小程序H5支付 -
【uniapp】实现H5微信分享
效果图下面是微信文档介绍后台开发参考官方文档:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp14211411
uni-app H5分享 接口调用 客户端 回调函数 -
html(h5)页面实现微信js分享
html(h5)页面实现微信js分享
微信 微信分享接口 json html ide -
gateway可以使用dubbo吗
1.spring cloud gateway 搭建需要特别注意的两点:spring cloud gateway是 基于SpringBoot2.x、SpringWebFlux和ProjectReactor构建。Spring Cloud Gateway需要Spring Boot和Spring Webflux提供的Netty运行时。它在传统的Servlet容器中或作为WAR构建时不起作用。
gateway可以使用dubbo吗 sentinel spring cloud java gateway