CINXE.COM

<!DOCTYPE html> <html lang="en"> <head data-n-head-ssr> <title data-n-head="true">小程序 使用 web-view 如何跳转到公众号链接? | 微信开放社区</title> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="baidu-site-verification" content="YohnrGnVqQ" /> <meta name="google-site-verification" content="u_9F5q9UrNxwO0uNw5V949s1JTovxX8x_O5f2ZIOlds"> <meta name="google-site-verification" content="X22_H_gVbgaA2kLabxpe9Tp3BgBPKoPgxj12zbGPdWM" /> <meta name="google-site-verification" content="W7QrG9vZcOB_1SLK2aSS7QpN5-QyRrDOBgv5PV5sFWY" /> <meta name="renderer" content="webkit"> <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="default"> <meta itemprop="image" content="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-8630de9303.png"> <meta property="og:image" content="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-8630de9303.png"> <!--<link href="https://res.wx.qq.com/wxopenforumres/htmledition/images/favicon318d1d.ico" rel="Shortcut Icon"> <link rel="apple-touch-icon" sizes="120x120" href="https://res.wx.qq.com/wxopenforumres/htmledition/images/favicon318d1d.ico">--> <!--<link rel="shortcut icon" type="image/x-icon" href="https://res.wx.qq.com/a/wx_fed/assets/res/NTI4MWU5.ico" /> <link rel="mask-icon" href="https://res.wx.qq.com/a/wx_fed/assets/res/MjliNWVm.svg" color="#4C4C4C" /> <link rel="apple-touch-icon-precomposed" href="https://res.wx.qq.com/a/wx_fed/assets/res/OTE0YTAw.png" />--> <link rel="shortcut icon" type="image/x-icon" href="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-db8b687441.ico" /> <link rel="mask-icon" href="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-b73356d472.svg" color="#4C4C4C" /> <link rel="apple-touch-icon-precomposed" href="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-8630de9303.png" /> <link rel="apple-touch-icon" sizes="120x120" href="https://res.wx.qq.com/a/wx_fed/wechat_search_common_assets/res/developers/3x/developers-db8b687441.ico"> <meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui, viewport-fit=cover, maximum-scale=1.0, user-scalable=0"> <script> (function () { 'use strict'; const SCRIPT_URLs = [ 'https://dldir1.qq.com/WechatWebDev/devPlatform/px.min.js', 'https://dev.weixin.qq.com/platform-console/proxy/assets/tel/px.min.js', ]; const param = { maskMode: 'all-mask', // 隐私策略, all-mask 或 no-mask, 详见:https://dev.weixin.qq.com/docs/analysis/sdk/docs.html recordCanvas: false, // 若要采集canvas, 设为true projectId: 'wxef34f91ddab0c534-0HLdQNKAk-dzsFsA', // 项目 ID,需替换为体验分析项目 ID iframe: false, // 是否采集 iframe 页面 console: true, // 是否采集 console 输出的错误日志 network: true, // 是否采集网络错误 }; function loadScript(url) { return new Promise((resolve, reject) => { const scriptEle = document.createElement('script'); scriptEle.type = 'text/javascript'; scriptEle.async = true; scriptEle.src = url; scriptEle.onload = () => { resolve(url); }; scriptEle.onerror = () => { reject(new Error('Script load error')); }; document.head.appendChild(scriptEle); }); } async function main() { try { sessionStorage.setItem('wxobs_start_timestamp', String(Date.now())); const fastestUrl = await Promise.race(SCRIPT_URLs.map(url => loadScript(url))); window.__startPX && window.__startPX(param); } catch (error) { console.error('Error loading scripts:', error); } } main(); })(); </script> <script type="text/javascript"> // 获取 cookies function getCookie(name) { var value = '; ' + document.cookie; var parts = value.split('; ' + name + '='); if (parts.length == 2) return parts.pop().split(';').shift(); else return ''; } function clearAllCookie() { var date=new Date(); date.setTime(date.getTime()-10000); var keys=document.cookie.match(/[^ =;]+(?=\=)/g); if (keys) { for (var i = keys.length; i--;) document.cookie=keys[i]+"=0; expire="+date.toGMTString()+"; path=/"; } } // 检查微信环境 var ua = navigator.userAgent.toLowerCase(); var isWeixin = ua.indexOf('micromessenger') !== -1 && ua.indexOf('wxwork') === -1; var isNewLogin = getCookie('s_rand_info') ? true : false // 清除旧的登录态 if(parseInt(getCookie('forum_login_type'), 10) === 1 && !isNewLogin) { clearAllCookie() } if (isWeixin && parseInt(getCookie('forum_login_type'), 10) !== 1 && parseInt(getCookie('forum_wx_login_err'), 10) !== 1) { var origin = location.origin || (location.protocol + '//' + location.hostname + (location.port ? ':' + location.port : '')); var redirectUri = origin + '/community/ngi/wxlogin?redirect_url=' + encodeURIComponent((location.pathname + location.search) || redirectUrl); location.href = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx807d86fb6b3d4fd2&redirect_uri=' + encodeURIComponent(redirectUri) + '&response_type=code&scope=snsapi_base&state=#wechat_redirect'; } // 测速用 var completed = function() { window.__ON_LOAD_TIMESTAMP__ = Date.now(); if (window.sendReportCache && window.sendReportCache.length) window.sendReportCache.forEach(function(func) { func && func(); }); // 如果需要提交上报,则在此时提交 window.sendReportCache = null; }; if (window.addEventListener) window.addEventListener('load', completed, false); else window.attachEvent('onload', completed); // 需要隐藏导航栏的情况 var needHideHeader = location.search.indexOf('hideheader=1') >= 0; var needCancelHideHeader = location.search.indexOf('hideheader=0') >= 0; if (!needHideHeader) { var hideHeaderUa = localStorage.getItem('HIDE_HEADER'); if (hideHeaderUa === ua) needHideHeader = true; if (needCancelHideHeader) { localStorage.removeItem('HIDE_HEADER'); needHideHeader = false; } } else { localStorage.setItem('HIDE_HEADER', ua); } if (needHideHeader) { document.documentElement.classList.add('hide-header'); } </script> <style>body{opacity:0}</style> <meta data-n-head="true" name="description" content="&amp;lt;web-view&amp;nbsp;src=&quot;https://mp.weixin.qq.com/mp/profile_ext?action=home&amp;amp;__biz=MzIyMjMzOTEwMA==&amp;amp;scene=124#wechat_redirect&quot;&amp;nbsp;/&amp;gt; 小程序 使用 web-view 如何跳转到公众号链接,跳转到公众号文章没问题,但是跳转到公众号链接会显示无法打开该页面"/><meta data-n-head="true" name="keywords" content="小程序开发者社区,小程序开发者论坛,小程序开发,小程序 使用 web-view 如何跳转到公众号链接?"/> <link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/manifest.2e614345f6dc48ee1b59.js" as="script"><link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/styles.d3066521957e3f387497.css" as="style"><link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/styles.ced71dd18bff17043692.js" as="script"><link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendor.23ee57865aaaa34cc4c6.js" as="script"><link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/app.d3066521957e3f387497.css" as="style"><link rel="preload" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/app.81ba301c274a09b116f9.js" as="script"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleDetail.5315b477e85f4c96ae74.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleList.fd17d98e76b2f575758a.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleList~MixFlowBlogList~businessQuestionBlogList~questionBlogList.140cb9c1385ff0a66407.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ArticleList~MixFlowBlogList~businessQuestionBlogList~questionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail.61eeb49038311a74a53e.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail~CommonIssueReply~OperateEditPage~PrivatemsgSession.937208ad4c89770bcdf9.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail~CommonIssueReply~OperateEditPage~PrivatemsgSession.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail~InnerManageCourse.c00f30621a5614f2f4b6.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionDetail~InnerManageCourse.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionIndex.95e73383846a15f2acbc.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/AskQuestionIndex.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BackendadminTag.c1eb23111dd7fe3483ae.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BackendadminTag.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BusinessMobileHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BusinessMobileHome.f09a34baeae347caa6f3.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BusinessMobileHome~businessHome.6e8eba08cb116d4647d7.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/BusinessMobileHome~businessHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CategorySearch.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CategorySearch.d818d6f67b2aa191650f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CommonIssueReply.7f0524619bc518abcc4a.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CommonIssueReply.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CourseDetail.92381a097b8edc496bc7.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CourseDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CourseSearch.65da616324b9abca783f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/CourseSearch.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DevtoolsLicenses.19cfc0a2d65469b5218e.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DevtoolsLicenses.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DocFrame.c121623ebf29528174b2.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DocFrame.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DraftList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/DraftList.f81e70f8d7afab811e81.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EduProfilePage.36bcc43e11865bebc7e8.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EduProfilePage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EduProfileWeappListPage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EduProfileWeappListPage.df59c6291e1bdc6895da.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EnterpriseProfileChooseSubject.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EnterpriseProfileChooseSubject.e8910add0139d7410d87.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EnterpriseProfileStatus.d1883bffd72963845e33.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/EnterpriseProfileStatus.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ErrorPage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ErrorPage.eecd3088b8190910d9e6.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/HomePage.c4c90132380c7db60818.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/HomePage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Homepage.5175a506a266e0749cf5.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Homepage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/HrefMiddlePage.96081f4048a5b713bc6f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/HrefMiddlePage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/InnerManageCourse.6b10b4a0df38eb046021.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/InnerManageCourse.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/InnerSettingCourse.3cb0932d334f0cc5b124.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/InnerSettingCourse.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/IssueList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/IssueList.f669c1ca467d9f92a034.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Liver.babbcf4ddf67f897f549.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Liver.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiddleAuthDevtoolsTpl.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiddleAuthDevtoolsTpl.eeb0ce4d9fef7b8dea51.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiddleAuthEduMiniapp.98433b496f8312fac27c.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiddleAuthEduMiniapp.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome.780147347a9e13b49af5.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeCreate.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeCreate.e99e7e0cd65f2433adac.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeCreate~MiniHomeEdit.22372881942acbd26a53.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeCreate~MiniHomeEdit.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeEdit.21228d8cb7d697989ade.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHomeEdit.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome~developHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome~developHome.dda2b088a682a10d9bb3.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome~developHome~operateHome.74d9f0e1830d47c88c5e.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MiniHome~developHome~operateHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList.af4d28fe9ef70c248099.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList~businessQuestionBlogList~questionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList~businessQuestionBlogList~questionBlogList.e1fd89fe31d49348d131.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList~questionBlogList.ba8a6931026681abba9f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MixFlowBlogList~questionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformComment.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformComment.ec84718473b040591f70.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformComplain.2d149b49ec9c2f296658.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformComplain.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformHomePageList.b256580b737671898ca0.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformHomePageList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformPosted.3c2249c3a1b9b34161c1.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/MobilePlatformPosted.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/OperateDetail.ca5e9244ae72a4a5c924.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/OperateDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/OperateEditPage.329cc6560f334d82de7e.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/OperateEditPage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/PrivatemsgSession.0ef3143c92b107dd9445.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/PrivatemsgSession.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ProductionList.4bfe4b7e60c0533f1f97.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ProductionList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Propaganda.bef894c47252d29985fb.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Propaganda.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/RecentCourse.2292879a13f1a59081f4.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/RecentCourse.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Reminder.7195f52def7c56f89a68.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/Reminder.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ServiceIntro.63bf07799703e52c4230.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/ServiceIntro.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/SwitchLogin.068da76fb45d27453ed6.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/SwitchLogin.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/SystemProfile.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/SystemProfile.eb9ba59ae5522b3da81c.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/TopicDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/TopicDetail.d489cf922d682237f6b8.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WXCodeMirror.b2be1465026ff12c1f1f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WdcIndex.3dcc04fa10be4e24d7a3.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WdcIndex.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WeIndustryCase.433cdc8b7cef535f1738.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WeIndustryCase.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WeIndustryCase~industryDetail~otherList.43653227a2c72553a4fb.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/WeIndustryCase~industryDetail~otherList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/authority.849e8812f265237ba66f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/authority.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessCaseList.35b2437ec7fb2aae0daa.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessCaseList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessHome.a96fa139666e0c9d7eb6.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessQuestionBlogList.23bdf49ffed4ba340e97.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessQuestionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessQuestionBlogList~questionBlogList.1ac95b0f3dafccaea294.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/businessQuestionBlogList~questionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/developHome.8648795da54aa58669af.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/developHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docCreate.c3e6528cb1a8eb0903fb.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docCreate.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docDetail.2f85361b488f37636a18.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docEdit.5e1a920778782fb2e1ba.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/docEdit.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/editor_dependencies.f2fd613b6305f53e9e3b.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/eduDevtoolsURL.9885b2e463a4e77b54ea.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/eduDevtoolsURL.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/enterpriseCreate.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/enterpriseCreate.f74fcb12d47c2e1e79a7.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/enterpriseModifyAdmin.cb1a4644397e7daa4028.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/enterpriseModifyAdmin.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/growUpCenter.382092a7ec2ef847acd7.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/growUpCenter.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/iframePage.ad7cec9bf68351bf13b3.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/iframePage.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryCreawte.785d15d02d4610df506f.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryCreawte.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryDetail.20f2d7c0588b49e3312c.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryDetail.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryList.3966b4513c65ebb87341.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/industryList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/login.de99ea194c4fcff261db.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/minicode.45cb5da9cfc03543df34.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/minicode.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/notify.17cb513be7cf753d9fab.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/notify.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/notify~personFollow.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/notify~personFollow.eb946fc93621356f6dcd.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/operateHome.1362cfe6390564cd0cbf.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/operateHome.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/otherList.3decfd726d99bf33af9b.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/otherList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personAnswer.b77eb80f23242f25e976.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personAnswer.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personArticle.6db4cb68bf97b125b55c.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personArticle.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personEdit.933e3e70835e308cfb31.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personEdit.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personFav.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personFav.d76feaca7e888a307bd9.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personFollow.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personFollow.f01a89210b8440105038.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personQuestion.bcb873c83c2c5ddd7ecb.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/personQuestion.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/questionBlogList.c88c8a617ea94e67fd31.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/questionBlogList.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/search.74aa5cd722d75a7bee21.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/search.d3066521957e3f387497.css"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~ArticleDetail~AskQuestionDetail~CommonIssueReply~IssueList~OperateEditPage~PrivatemsgSession~0b81ee0b.99ac6f0627499ba3896b.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~ArticleDetail~InnerManageCourse~IssueList~TopicDetail~docCreate~docDetail~docEdit~enterprise~24d1f334.cc6f62fef452f516fe55.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~ArticleDetail~IssueList~TopicDetail~docCreate~docDetail~docEdit~enterpriseCreate~personEdit~search.e801cadc11d5318baa3a.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~CommonIssueReply~Reminder~search.7ec3c3331c6b255c8a02.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~CourseDetail.ace25277af7b8cef175d.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~PrivatemsgSession.330867eb115ebefdb5dd.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~SystemProfile.3e3b7db0f3e8c95b4acd.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~notify.3f14e53db9e4017e9ace.js"><link rel="prefetch" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendors~notify~search.0022b50ec2375cd5e68a.js"><link rel="stylesheet" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/styles.d3066521957e3f387497.css"><link rel="stylesheet" href="https://res8.wxqcloud.qq.com.cn/community/dist/community/app.d3066521957e3f387497.css"></head> <body> <div id="app" data-server-rendered="true" class="app_container app"><div check-reduce style="display: none"><img src="https://res.wx.qq.com/op_res/dHtIRV4hVzWL3c2ZSXjoG1VcnRC3fENDSGIm_8hOS-9PWFTVVdbPfoGTaJnHJpFm"></div><div id="header" itemscope="itemscope" itemtype="http://www.schema.org/SiteNavigationElement" class="head app_header"><div class="head__nav__container head__nav__container__overflow-visible"><div class="head__nav__inner"><div class="head_box js_head_box"><div class="weui-desktop-head__inner"><div check-reduce class="weui-desktop-head__inner_hd"><div class="weui-desktop-layout"><div class="weui-desktop-layout__side"><h1 class="weui-desktop-logo"><a href="/community/homepage" title="微信开放社区" class="logo_mp"><img src="https://res8.wxqcloud.qq.com.cn/community/dist/community/images/communitySvgLogo_4dc945.svg" style="width: 100%; height: 100%;"></a></h1></div></div><div class="header__navs"><div class="header__navs__inner"><div itemprop="name" class="block_nav"><a itemprop="url" href="/community" class="block_nav_link">交流专区</a></div><div itemprop="name" class="block_nav"><a itemprop="url" href="https://fuwu.weixin.qq.com" target="_blank" class="block_nav_link">服务市场</a></div><div itemprop="name" class="block_nav"><a itemprop="url" href="/community/business" class="block_nav_link">微信学堂</a></div><div itemprop="name" class="block_nav"><a itemprop="url" href="https://developers.weixin.qq.com/miniprogram/dev/framework/" target="__blank" class="block_nav_link">文档</a></div></div></div></div><div class="header_ctrls js_header_ctrls"><div class="header_ctrls_extend"><a href="https://developers.weixin.qq.com/community/search" class="for_mobile icon_mobile_search_global"></a><div class="header_ctrls_meta header_ctrls_meta_navigation"><dl class="header_navigation_box"><a href="https://developers.weixin.qq.com/community/search" class="icon_mobile_search_global for_pc"></a><dt class="header_navigation_box_header wxapp">小程序</dt><dd class="header_navigation_box_body" style="display:none;"><!----><ul class="header_navigation_box_item_box"><li class="header_navigation_box_item header_navigation_box_item_orientation"><dl class="header_navigation_box_item_list"><dt class="header_navigation_box_item_list_title">常用主页</dt><dd class="header_navigation_box_item_list_item"><a href="/community" class="header_navigation_box_item_list_item_inner header_navigation_box_item_list_item_wxapp"><span class="header_navigation_box_item_list_item_icon"></span><p class="header_navigation_box_item_list_item_desc">小程序</p></a><a href="/community/minigame" class="header_navigation_box_item_list_item_inner header_navigation_box_item_list_item_minigame"><span class="header_navigation_box_item_list_item_icon"></span><p class="header_navigation_box_item_list_item_desc">小游戏</p></a><a href="/community/enterprisewechat" class="header_navigation_box_item_list_item_inner header_navigation_box_item_list_item_wxenterprise"><span class="header_navigation_box_item_list_item_icon "></span><p class="header_navigation_box_item_list_item_desc">企业微信</p></a><a href="/community/pay" class="header_navigation_box_item_list_item_inner header_navigation_box_item_list_item_wxpay"><span class="header_navigation_box_item_list_item_icon header_navigation_box_item_list_item_pay"></span><p class="header_navigation_box_item_list_item_desc">微信支付</p></a></dd><dd class="header_navigation_box_item_list_item"><span class="header_navigation_box_item_list_item_inner"></span><span class="header_navigation_box_item_list_item_inner"></span><span class="header_navigation_box_item_list_item_inner"></span><span class="header_navigation_box_item_list_item_inner"></span></dd></dl></li><li check-reduce class="header_navigation_box_item header_navigation_box_item__with-list"><a href="https://fuwu.weixin.qq.com" target="_blank" class="header_navigation_box_item_inner"><dl class="header_navigation_box_item_list"><dt class="header_navigation_box_item_list_title">服务市场</dt></dl></a><a href="/community/business" target="_blank" class="header_navigation_box_item_inner"><dl class="header_navigation_box_item_list"><dt class="header_navigation_box_item_list_title">微信学堂</dt></dl></a><a itemprop="url" target="_blank" href="https://developers.weixin.qq.com/miniprogram/dev/framework/" class="header_navigation_box_item_inner"><dl class="header_navigation_box_item_list"><dt class="header_navigation_box_item_list_title">文档</dt></dl></a></li><!----></ul></dd></dl></div><div class="js_search_header_box header_ctrls_meta top_search_box for_pc"><a href="javascript:;" class="js_search_btn search_switch"><i class="icon_search"></i></a><span class="js_input_box search_input_box active"><input type="text" placeholder="搜索你要的内容" value="" class="js_input"><!----></span><!----></div><div check-reduce="" class="dib"><div class="header_ctrls_meta top_notice_box header_adjust_height" style="display: none;"><span class="account_inbox_switch"><i class="icon_inbox opacity"></i></span></div><a class="js_redirect_to_loginpage hd_login_link">登录</a></div></div></div></div></div><!----></div></div><div id="SubNav" class="sub__nav sub__nav____headSub"><div class="block_nav_wrp__empty__hold"></div><!----></div></div><div id="body" class="body page_simple page_detail"><div class="container_box"><div class="markdown_article_detail hasOtherBox markdown_article_detail_course"><div class="mode__single-breadcrumb detail__breadcruumb for_mobile mode__single-breadcrumb__normal"><a href="/community/develop/list/2?id=" class="mode__single-breadcrumb__container">公告列表</a></div><div class="mode__single-breadcrumb detail__breadcruumb for_pc mode__single-breadcrumb__mini"><a href="/community/develop/list/2?id=" class="mode__single-breadcrumb__container">公告列表</a></div><div class="group"><div class="post_detail_main"><div id="articleApp" itemscope="itemscope" itemtype="http://schema.org/Question" data-doc-id="0006c2511a457876d8b1c921c6b400" data-title="小程序 使用 web-view 如何跳转到公众号链接?" data-create-time="1719457969" data-blog-category="1" data-openid="oCJUsw7V6Sm_f0Y_4p4oudc0hRE0" class="post_detail mod_default_box"><meta check-reduce itemprop="name" content="小程序 使用 web-view 如何跳转到公众号链接?"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0006c2511a457876d8b1c921c6b400"><meta check-reduce itemprop="keywords" content="小程序 使用 web-view 如何跳转到公众号链接?"><meta check-reduce itemprop="answerCount" content="3"><meta check-reduce itemprop="dateCreated" content="2024-06-27T03:12:49.000Z"><meta check-reduce itemprop="dateModified" content="2024-06-27T03:12:49.000Z"><div class="behavior_container for_mobile"><!----><div class="behavior_item behavior_collect"><span class="behavior_item_ic"></span><div class="behavior_item_content">收藏</div></div><div id="shareImg" check-reduce class="behavior_item behavior_share share_behavior_target"><span class="behavior_item_ic share_behavior_target"></span><div class="behavior_item_content share_behavior_target">分享</div><div class="shareImg share_behavior_target" style="display:none;"><span class="shareImg__load share_behavior_target"></span><div title="小程序码" class="sharjs_share_target_target share_behavior_target" style="background-image:url();"></div><p class="share_img_desc share_behavior_target">扫描小程序码分享</p></div></div><div class="behavior_item behavior_comment"><span class="behavior_item_ic"></span><div class="behavior_item_content">回答</div></div></div><div class="post_overview detail_header"><div class="post_overview_opr"></div><!----><div id="detailTitle" class="post_overview_main"><h1 class="post_title" style="margin-bottom: 8px;"><i check-reduce class="icon_post_tag top" style="display: none;">置顶</i><span class="post_title_content">小程序 使用 web-view 如何跳转到公众号链接?</span><!----><i check-reduce class="icon_post_tag featured" style="display: none;">精选</i><i check-reduce class="icon_post_tag hot" style="display: none;">热门</i><span check-reduce class="checking_state"><!----><!----></span></h1><div itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person" class="post_info"><meta check-reduce itemprop="name" content="芜湖,起飞!"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/personal/oCJUsw7V6Sm_f0Y_4p4oudc0hRE0"><!----><!----><span check-reduce="" class="popover__box popover_appreciate popover__box_hide" data-v-0a980b96><!----><span class="popover_target"><a href="/community/personal/oCJUsw7V6Sm_f0Y_4p4oudc0hRE0" data-openid="oCJUsw7V6Sm_f0Y_4p4oudc0hRE0" data-author="芜湖,起飞!" class="post_owner post_info_meta">芜湖,起飞!</a></span></span><!----><em id="create_time" class="post_time post_info_meta">2024-06-27</em><!----><span class="post_discuss_num post_info_meta"><span>38387</span><span class="post_info_meta_inner_text">浏览</span></span><span class="post_info_meta_inner_text">问题模块: API和组件</span><!----></div></div><div check-reduce="" class="mod_bug_trace"><button class="c-wx-btn" style="position:fixed;right:0px;top:0px;z-index:100000;display:none;">开启插件</button><!----></div></div><!----><!----><!----><div><div class="ask_content"><!----><div id="content" itemprop="text" class="post_content expanded"><pre class="ql-syntax" spellcheck="false"><span class="hljs-tag">&lt;<span class="hljs-name">web-view</span>&nbsp;<span class="hljs-attr">src</span>=<span class="hljs-string">"https://mp.weixin.qq.com/mp/profile_ext?action=home&amp;__biz=MzIyMjMzOTEwMA==&amp;scene=124#wechat_redirect"</span>&nbsp;/&gt;</span> </pre><p>小程序 使用 web-view 如何跳转到公众号链接,跳转到<span style="font-size: 16px;">公众号文章没问题,但是跳转到公众号链接会显示无法打开该页面</span></p><p><img src="https://mmbiz.qpic.cn/sz_mmbiz_jpg/hmI8grH3gfCXwzKlBmYTDHBmrgePBTNKXaNWpvPmsibmiaB7Le5BWf0Tve47ZiaOyEVnGtbiaCbRtE9zPNYGSRnseg/0?wx_fmt=jpeg" /></p></div><!----><!----></div><!----></div><div class="post_extra_info detail_footer"><!----><!----><!----><!----><div id="footer-opr-site"></div><div id="blog-footer-opr" class="post_opr_area" style="cursor: pointer;"><div class="post_opr_area_inner_area"><div class="post_opr_area_inner"><div class="post_opr post_opr_public post_opr_public_l post_opr_invite_answer"><span class="footer-left-btn"><a class="btn btn_primary">回答</a><!----><!----><a href="javascript:;" class="btn btn_default">关注问题</a></span><span class="popover__box popover_invite_answer popover__box_hide"><!----><span class="popover_target"><a href="javascript:;" class="post_opr_meta"><span class="icon_post_opr ic_invite_answer"></span>邀请回答</a></span></span></div><div class="post_opr post_opr_public"><!----><div class="post_opr_col post_opr_col_left"><!----><a data-component-identifier="qa-content-comment" class="post_opr_meta post_opr_meta_btn post_opr_meta_reward for_pc" style="cursor: pointer; background-color: white;"><div class="post_opr_meta_btn_inner"><i class="icon_post_opr collection"></i>收藏 </div></a></div><div class="post_opr_col post_opr_col_right"><div check-reduce="" class="mode__share post_opr_meta"><div href="javascript:;" class="js_share_target share_footer_target_parent"><span class="icon_post_opr ic_share share_footer_target share_footer_target_icon js_share_target"></span>分享 <div class="shareImg js_share_target" style="display:none;"><span class="shareImg__load share_footer_target"></span><div title="小程序码" class="sharjs_share_target_target share_footer_target" style="background-image:url();"></div><p class="share_img_desc js_share_target share_footer_target">扫描小程序码分享</p><a href="javascript:;" class="share_footer_target js_share_target">复制链接</a></div></div></div><!----><!----><!----><span check-reduce="" class="popover__box post_opr_meta post_opr_meta_more_operation for_pc popover__box_hide popover__box__use__target-position"><!----><span class="popover_target"><div class="post_opr_meta icon_operation_more"></div></span></span><div class="post_opr_meta icon_operation_more for_mobile"></div></div></div></div></div></div><!----><!----><div check-reduce="" class="dialog_wrapper page_mode_dialog_complain dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>请选择投诉理由</h3></div><div class="dialog_bd"><!----><div class="dialog_complain_list"><div class="mod_access"><ul class="access_list"><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">广告内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">违法违规</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">恶意灌水内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">其他</div></li></ul></div></div></div><!----></div></div></div><!----><div class="dialog_wrapper dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><!----><div class="dialog_hd"><h3>删除当前帖子</h3></div><div class="dialog_bd"><!----><div class="page_msg large simple default single_line"><div class="inner group"><span class="msg_icon_wrapper"><i class="icon_msg info "></i></span><div class="msg_content "><h4>删除后帖子内容及评论将一并被删除,且不可恢复。</h4></div></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn js_btn btn_warn">删除</a><!----><a href="javascript:;" class="btn btn_default js_btn">取消</a></div></div></div></div><div class="dialog_wrapper" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:496px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><!----><div class="dialog_bd"><!----><div class="level7_delete_dialog"><img src="https://res8.wxqcloud.qq.com.cn/community/dist/community/images/icons_outlined_error_0d380d.svg" class="level7_delete_dialog_icon"><div class="level7_delete_dialog_msg"><p class="level7_delete_dialog_msg_title">确定删除?</p><p class="level7_delete_dialog_msg_tip">删除后不可恢复</p></div></div><input placeholder="请输入删除理由" value="" class="level7_delete_dialog_reason"></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_default" style="color:#07C160;">取消</a><a href="javascript:;" class="btn btn_primary">确定</a></div></div></div></div><div class="dialog_wrapper dialog_notice dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:514px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>关注“微信开放社区”公众号</h3></div><div class="dialog_bd"><!----><p class="dialog_notice_info">关注后,可在微信内接收相应的重要提醒。</p><div class="js_qr_img qrcheck_img_area"><img src="https://res8.wxqcloud.qq.com.cn/community/dist/community/images/community_qrcode_c0a4a0.jpg" alt="" class="qrcheck_img" style="margin:0 auto;"></div><p class="dialog_notice_indicate">请使用微信扫描二维码关注 “微信开放社区” 公众号</p></div><!----></div></div></div><!----><div class="dialog_wrapper dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>反馈</h3></div><div class="dialog_bd"><!----><div><textarea type="text" placeholder="请填写反馈内容" rows="5" class="review_dialog_textarea"></textarea><div style="text-align:center;margin-top:20px;"><button class="btn btn-primary">确定</button><button class="btn btn-default" style="margin-left:20px;">取消</button></div><!----></div></div><!----></div></div></div></div><!----><!----></div><!----><div class="anwser__area"><div class="answer_container"><div class="anwser__hd"><p class="anwser__title">3 个回答</p></div><div id="comment-list" class=" anwsers__list"><div class="answer_container"><div class="post_comment_area"><ul class="post_comment_list"><li itemprop="answer" itemscope="itemscope" itemtype="http://schema.org/Answer" id="000a863826c0f0b6dfb1758a668c" class="widget_comment js_post_comment_item post_comment_item "><meta check-reduce itemprop="image"><meta check-reduce itemprop="upvoteCount" content="0"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0006c2511a457876d8b1c921c6b400?jumpto=comment&amp;commentid=000a863826c0f0b6dfb1758a668c"><meta check-reduce itemprop="dateCreated" content="Thu Jun 27 2024 11:44:33 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="dateModified" content="Thu Jun 27 2024 11:44:33 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="commentCount" content="0"><a href="/community/personal/oCJUswyyjmk8Mq5ULo4iPp4zCMeo" target="_blank" class="post_comment_owner"><span class="popover__box popover_appreciate popover__box_hide" data-v-0a980b96><!----><span class="popover_target"><div class="post_comment_owner_avatar"><img src="https://wx.qlogo.cn/mmhead/Q3auHgzwzM400SMAq8gDm1XoWvuyYtjvib86HNy5Plkhj7BXiaax0xMA/0" alt="朱兆恩(易做图)" class="post_comment_owner_avatar_image"></div><strong data-component-identifier="replybox__nick_name" class="post_comment_owner_nickname">朱兆恩(易做图)</strong></span></span></a><div class="checking_state_new"><!----><!----><!----><!----><!----><!----><!----></div><span class="post_comment_pos"><!----><!----><!----><!----><span check-reduce class="post_comment_time">2024-06-27</span></span><!----><!----><div check-reduce class="post_comment_editor_area comment_editor_box" style="display:none;"><div class="post_comment_content post_editor_box"><div class="mode__rich-text-editor mode__rich-text-editor__normal"><div class="mode__rich-text-editor__header mode__rich-text-editor__header__normal"><div class="mode__rich-text-editor__header__extend"></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__bold"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__bold ql-bold"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>加粗</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__red"><button value="red" class="mode__rich-text-editor__icon mode__rich-text-editor__icon__red ql-red"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>标红</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-code-block"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__code-block ql-code-block"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入代码</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-link"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__link ql-link"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入链接</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-image"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__image ql-image"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入图片</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-video"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__video ql-video"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>上传视频</p></span></div></div><!----><div class="mode__rich-text-editor__body" style="display:none;"></div><div class="mode__rich-text-editor__body" style="display:;"><div> 请 <a>登录</a> 后发表内容 </div></div><div class="dialog_wrapper dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>新增或编辑超链接</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">链接地址</label><div class="frm_controls"><span class="frm_input_box"><input type="text" value="https://" class="frm_input"></span></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div><div class="dialog_wrapper dialog__insert-video dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>插入视频</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">视频链接</label><div class="frm_controls"><span class="frm_input_box"><input type="text" placeholder="仅支持插入腾讯视频" value="" class="frm_input"></span><!----></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div></div><div class="tool_bar tr"><a href="javascript:;" class="btn btn_primary edui-default"><!---->发表</a></div></div></div><div class="post_comment_content_container"><div itemprop="text" class="post_comment_content expanded" style="display:;"><p>公众号没得首传统页。可以跳转到专题页</p></div><!----></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><a href="javascript:;" disabled="disabled" class="btn btn_default" style="margin: 12px 0; color: #999">待楼主反馈</a><!----></div><!----><!----><!----><div class="post_comment_info" style="display:;"><div class="mobile_post_comment_info_hd"><div class="mobile_post_comment_time">2024-06-27</div><!----><!----></div><div class="post_comment_opr"><div data-component-identifier="comment-like" class="best_comment_agree click "><div class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用 <!----></div></div><div class="best_comment_unagree"><div class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i></div></div><div class="js_comment best_comment_discuss"><i class="icon_post_opr discuss"></i><span check-reduce class="post_opr_wording">回复 <!----></span></div><!----><!----><!----></div></div><!----><div check-reduce="" class="dialog_wrapper page_mode_dialog_complain dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>请选择投诉理由</h3></div><div class="dialog_bd"><!----><div class="dialog_complain_list"><div class="mod_access"><ul class="access_list"><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">广告内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">违法违规</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">恶意灌水内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">其他</div></li></ul></div></div></div><!----></div></div></div><!----><!----><!----><div><!----></div><div><!----></div></li><!----><li itemprop="answer" itemscope="itemscope" itemtype="http://schema.org/Answer" id="00042c24808c8046d9b1f1d0b614" class="widget_comment js_post_comment_item post_comment_item "><meta check-reduce itemprop="image"><meta check-reduce itemprop="upvoteCount" content="0"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0006c2511a457876d8b1c921c6b400?jumpto=comment&amp;commentid=00042c24808c8046d9b1f1d0b614"><meta check-reduce itemprop="dateCreated" content="Thu Jun 27 2024 11:19:16 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="dateModified" content="Thu Jun 27 2024 11:19:16 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="commentCount" content="1"><a href="/community/personal/oCJUsw880y7ik6dy3OYfgqcRWhtM" target="_blank" class="post_comment_owner"><span class="popover__box popover_appreciate popover__box_hide" data-v-0a980b96><!----><span class="popover_target"><div class="post_comment_owner_avatar"><img src="https://wx.qlogo.cn/mmhead/sTJptKvBQLLvich642Tmo3A8XAKcrrS9lDVlIlMrzdk7TVXpRAVOnt3TRTiajs75xGvqDqhjGAWhA/0" alt="那一抹微笑😊穿透阳光" class="post_comment_owner_avatar_image"></div><strong data-component-identifier="replybox__nick_name" class="post_comment_owner_nickname">那一抹微笑😊穿透阳光</strong></span></span></a><div class="checking_state_new"><!----><!----><!----><!----><!----><!----><!----></div><span class="post_comment_pos"><!----><!----><!----><!----><span check-reduce class="post_comment_time">2024-06-27</span></span><!----><!----><div check-reduce class="post_comment_editor_area comment_editor_box" style="display:none;"><div class="post_comment_content post_editor_box"><div class="mode__rich-text-editor mode__rich-text-editor__normal"><div class="mode__rich-text-editor__header mode__rich-text-editor__header__normal"><div class="mode__rich-text-editor__header__extend"></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__bold"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__bold ql-bold"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>加粗</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__red"><button value="red" class="mode__rich-text-editor__icon mode__rich-text-editor__icon__red ql-red"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>标红</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-code-block"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__code-block ql-code-block"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入代码</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-link"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__link ql-link"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入链接</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-image"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__image ql-image"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入图片</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-video"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__video ql-video"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>上传视频</p></span></div></div><!----><div class="mode__rich-text-editor__body" style="display:none;"></div><div class="mode__rich-text-editor__body" style="display:;"><div> 请 <a>登录</a> 后发表内容 </div></div><div class="dialog_wrapper dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>新增或编辑超链接</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">链接地址</label><div class="frm_controls"><span class="frm_input_box"><input type="text" value="https://" class="frm_input"></span></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div><div class="dialog_wrapper dialog__insert-video dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>插入视频</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">视频链接</label><div class="frm_controls"><span class="frm_input_box"><input type="text" placeholder="仅支持插入腾讯视频" value="" class="frm_input"></span><!----></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div></div><div class="tool_bar tr"><a href="javascript:;" class="btn btn_primary edui-default"><!---->发表</a></div></div></div><div class="post_comment_content_container"><div itemprop="text" class="post_comment_content expanded" style="display:;"><p>只能打开文章</p></div><!----></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><a href="javascript:;" disabled="disabled" class="btn btn_default" style="margin: 12px 0; color: #999">待楼主反馈</a><!----></div><!----><!----><!----><div class="post_comment_info" style="display:;"><div class="mobile_post_comment_info_hd"><div class="mobile_post_comment_time">2024-06-27</div><!----><!----></div><div class="post_comment_opr"><div data-component-identifier="comment-like" class="best_comment_agree click "><div class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用 <!----></div></div><div class="best_comment_unagree"><div class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i></div></div><div class="js_comment best_comment_discuss"><i class="icon_post_opr discuss"></i><span check-reduce class="post_opr_wording">回复 <span class="best_comment_num">1</span></span></div><!----><!----><!----></div></div><div class="post_comment_reply_area part3"><div class="post_comment_area"><ul class="post_comment_list" style="display:;"><li itemprop="comment" itemscope="itemscope" itemtype="http://schema.org/Comment" id="0002e028ca0e68b6dab162961660" class="widget_comment js_post_comment_item post_comment_item "><meta check-reduce itemprop="image"><meta check-reduce itemprop="upvoteCount" content="0"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0006c2511a457876d8b1c921c6b400?jumpto=comment&amp;commentid=0002e028ca0e68b6dab162961660"><meta check-reduce itemprop="dateCreated" content="Thu Jun 27 2024 11:24:49 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="dateModified" content="Thu Jun 27 2024 11:24:49 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="commentCount" content="0"><a href="/community/personal/oCJUsw7V6Sm_f0Y_4p4oudc0hRE0" target="_blank" class="post_comment_owner"><span class="popover__box popover_appreciate popover__box_hide" data-v-0a980b96><!----><span class="popover_target"><div class="post_comment_owner_avatar"><img src="https://wx.qlogo.cn/mmopen/vi_32/z2qAwoU75HLExGv6YFfMSufqNVYtYjPoia6lTFbpl88mvkGWayA4WAibUMdv83uicaTfTc0BRdm8fL3XtL8QficoIQ/0" alt="芜湖,起飞!" class="post_comment_owner_avatar_image"></div><strong data-component-identifier="replybox__nick_name" class="post_comment_owner_nickname">芜湖,起飞!</strong></span></span></a><div class="checking_state_new"><span title="楼主" class="lz_new"></span><!----><!----><!----><!----><!----><!----></div><span class="post_comment_pos"><!----><!----><!----><!----><span check-reduce class="post_comment_time">2024-06-27</span></span><!----><!----><div check-reduce class="post_comment_editor_area comment_editor_box" style="display:none;"><div class="post_comment_content post_editor_box"><div class="mode__rich-text-editor mode__rich-text-editor__normal"><div class="mode__rich-text-editor__header mode__rich-text-editor__header__normal"><div class="mode__rich-text-editor__header__extend"></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__bold"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__bold ql-bold"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>加粗</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__red"><button value="red" class="mode__rich-text-editor__icon mode__rich-text-editor__icon__red ql-red"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>标红</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-code-block"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__code-block ql-code-block"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入代码</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-link"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__link ql-link"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入链接</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-image"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__image ql-image"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入图片</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-video"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__video ql-video"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>上传视频</p></span></div></div><!----><div class="mode__rich-text-editor__body" style="display:none;"></div><div class="mode__rich-text-editor__body" style="display:;"><div> 请 <a>登录</a> 后发表内容 </div></div><div class="dialog_wrapper dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>新增或编辑超链接</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">链接地址</label><div class="frm_controls"><span class="frm_input_box"><input type="text" value="https://" class="frm_input"></span></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div><div class="dialog_wrapper dialog__insert-video dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>插入视频</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">视频链接</label><div class="frm_controls"><span class="frm_input_box"><input type="text" placeholder="仅支持插入腾讯视频" value="" class="frm_input"></span><!----></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div></div><div class="tool_bar tr"><a href="javascript:;" class="btn btn_primary edui-default"><!---->发表</a></div></div></div><div class="post_comment_content_container"><div itemprop="text" class="post_comment_content expanded" style="display:;">好吧,感谢大佬</div><!----></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><a href="javascript:;" disabled="disabled" class="btn btn_default" style="margin: 12px 0; color: #999">待楼主反馈</a><!----></div><div class="cm-s-default CodeMirror-wrap"><!----><!----></div><!----><!----><div class="post_comment_info" style="display:;"><div class="mobile_post_comment_info_hd"><div class="mobile_post_comment_time">2024-06-27</div><!----><!----></div><div class="post_comment_opr"><div data-component-identifier="comment-like" class="best_comment_agree click "><i class="icon_post_opr icon_agree"></i><span check-reduce class="post_opr_wording">赞 <!----></span></div><!----><div class="js_comment post_opr_meta post_opr_meta_comment_reply"><i class="icon_post_opr discuss"></i><span check-reduce class="post_opr_wording">回复</span></div><!----><!----><!----></div></div><!----><div check-reduce="" class="dialog_wrapper page_mode_dialog_complain dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>请选择投诉理由</h3></div><div class="dialog_bd"><!----><div class="dialog_complain_list"><div class="mod_access"><ul class="access_list"><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">广告内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">违法违规</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">恶意灌水内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">其他</div></li></ul></div></div></div><!----></div></div></div><!----><!----><!----><div><!----></div><div><!----></div></li><!----></ul><!----><!----><!----><!----><!----></div></div><div check-reduce="" class="dialog_wrapper page_mode_dialog_complain dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>请选择投诉理由</h3></div><div class="dialog_bd"><!----><div class="dialog_complain_list"><div class="mod_access"><ul class="access_list"><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">广告内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">违法违规</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">恶意灌水内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">其他</div></li></ul></div></div></div><!----></div></div></div><!----><!----><!----><div><!----></div><div><!----></div></li><!----><li itemprop="answer" itemscope="itemscope" itemtype="http://schema.org/Answer" id="00006814bf0a10a6d8b16c1c6664" class="widget_comment js_post_comment_item post_comment_item "><meta check-reduce itemprop="image"><meta check-reduce itemprop="upvoteCount" content="0"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0006c2511a457876d8b1c921c6b400?jumpto=comment&amp;commentid=00006814bf0a10a6d8b16c1c6664"><meta check-reduce itemprop="dateCreated" content="Thu Jun 27 2024 11:15:30 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="dateModified" content="Thu Jun 27 2024 11:15:30 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="commentCount" content="3"><a href="/community/personal/oCJUswwXU-Lcls2NbW2v7XYy1-UU" target="_blank" class="post_comment_owner"><span class="popover__box popover_appreciate popover__box_hide" data-v-0a980b96><!----><span class="popover_target"><div class="post_comment_owner_avatar"><img src="https://wx.qlogo.cn/mmopen/vi_32/dHKPw72kVPBecLbekXZUh9bN03EVIvesLfJNR9UfdEYxQafvZHROsZGe56NC0FY3GJV4KQuqGURLsn5yvg6tmviayBLq7JM5dpKdVsmApvg0/0" alt="Hlxuan." class="post_comment_owner_avatar_image"></div><strong data-component-identifier="replybox__nick_name" class="post_comment_owner_nickname">Hlxuan.</strong></span></span></a><div class="checking_state_new"><!----><!----><!----><!----><span class="ic_contributer"></span><span class="ic_professor"></span><!----></div><span class="post_comment_pos"><!----><!----><!----><!----><span check-reduce class="post_comment_time">2024-06-27</span></span><!----><!----><div check-reduce class="post_comment_editor_area comment_editor_box" style="display:none;"><div class="post_comment_content post_editor_box"><div class="mode__rich-text-editor mode__rich-text-editor__normal"><div class="mode__rich-text-editor__header mode__rich-text-editor__header__normal"><div class="mode__rich-text-editor__header__extend"></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__bold"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__bold ql-bold"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>加粗</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__red"><button value="red" class="mode__rich-text-editor__icon mode__rich-text-editor__icon__red ql-red"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>标红</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-code-block"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__code-block ql-code-block"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入代码</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-link"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__link ql-link"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入链接</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-image"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__image ql-image"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入图片</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-video"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__video ql-video"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>上传视频</p></span></div></div><!----><div class="mode__rich-text-editor__body" style="display:none;"></div><div class="mode__rich-text-editor__body" style="display:;"><div> 请 <a>登录</a> 后发表内容 </div></div><div class="dialog_wrapper dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>新增或编辑超链接</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">链接地址</label><div class="frm_controls"><span class="frm_input_box"><input type="text" value="https://" class="frm_input"></span></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div><div class="dialog_wrapper dialog__insert-video dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>插入视频</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">视频链接</label><div class="frm_controls"><span class="frm_input_box"><input type="text" placeholder="仅支持插入腾讯视频" value="" class="frm_input"></span><!----></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div></div><div class="tool_bar tr"><a href="javascript:;" class="btn btn_primary edui-default"><!---->发表</a></div></div></div><div class="post_comment_content_container"><div itemprop="text" class="post_comment_content expanded" style="display:;"><p>你这个是公众号历史消息链接,目前是不支持在小程序 web-view 组件中打开的,只能打开关联公众号文章链接和后台配置好业务域名的链接。</p></div><!----></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><a href="javascript:;" disabled="disabled" class="btn btn_default" style="margin: 12px 0; color: #999">待楼主反馈</a><!----></div><!----><!----><!----><div class="post_comment_info" style="display:;"><div class="mobile_post_comment_info_hd"><div class="mobile_post_comment_time">2024-06-27</div><!----><!----></div><div class="post_comment_opr"><div data-component-identifier="comment-like" class="best_comment_agree click "><div class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i>有用 <!----></div></div><div class="best_comment_unagree"><div class="comment_topic_agree"><i class="icon_post_opr icon_topic_unagree"></i></div></div><div class="js_comment best_comment_discuss"><i class="icon_post_opr discuss"></i><span check-reduce class="post_opr_wording">回复 <span class="best_comment_num">3</span></span></div><!----><!----><!----></div></div><div class="post_comment_reply_area part3"><div class="post_comment_area"><ul class="post_comment_list" style="display:;"><li itemprop="comment" itemscope="itemscope" itemtype="http://schema.org/Comment" id="000a08912a06e856d9b1d4e646e4" class="widget_comment js_post_comment_item post_comment_item "><meta check-reduce itemprop="image"><meta check-reduce itemprop="upvoteCount" content="0"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0006c2511a457876d8b1c921c6b400?jumpto=comment&amp;commentid=000a08912a06e856d9b1d4e646e4"><meta check-reduce itemprop="dateCreated" content="Thu Jun 27 2024 11:17:41 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="dateModified" content="Thu Jun 27 2024 11:17:41 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="commentCount" content="0"><a href="/community/personal/oCJUsw7V6Sm_f0Y_4p4oudc0hRE0" target="_blank" class="post_comment_owner"><span class="popover__box popover_appreciate popover__box_hide" data-v-0a980b96><!----><span class="popover_target"><div class="post_comment_owner_avatar"><img src="https://wx.qlogo.cn/mmopen/vi_32/z2qAwoU75HLExGv6YFfMSufqNVYtYjPoia6lTFbpl88mvkGWayA4WAibUMdv83uicaTfTc0BRdm8fL3XtL8QficoIQ/0" alt="芜湖,起飞!" class="post_comment_owner_avatar_image"></div><strong data-component-identifier="replybox__nick_name" class="post_comment_owner_nickname">芜湖,起飞!</strong></span></span></a><div class="checking_state_new"><span title="楼主" class="lz_new"></span><!----><!----><!----><!----><!----><!----></div><span class="post_comment_pos"><!----><!----><!----><!----><span check-reduce class="post_comment_time">2024-06-27</span></span><!----><!----><div check-reduce class="post_comment_editor_area comment_editor_box" style="display:none;"><div class="post_comment_content post_editor_box"><div class="mode__rich-text-editor mode__rich-text-editor__normal"><div class="mode__rich-text-editor__header mode__rich-text-editor__header__normal"><div class="mode__rich-text-editor__header__extend"></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__bold"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__bold ql-bold"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>加粗</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__red"><button value="red" class="mode__rich-text-editor__icon mode__rich-text-editor__icon__red ql-red"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>标红</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-code-block"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__code-block ql-code-block"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入代码</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-link"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__link ql-link"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入链接</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-image"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__image ql-image"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入图片</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-video"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__video ql-video"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>上传视频</p></span></div></div><!----><div class="mode__rich-text-editor__body" style="display:none;"></div><div class="mode__rich-text-editor__body" style="display:;"><div> 请 <a>登录</a> 后发表内容 </div></div><div class="dialog_wrapper dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>新增或编辑超链接</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">链接地址</label><div class="frm_controls"><span class="frm_input_box"><input type="text" value="https://" class="frm_input"></span></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div><div class="dialog_wrapper dialog__insert-video dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>插入视频</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">视频链接</label><div class="frm_controls"><span class="frm_input_box"><input type="text" placeholder="仅支持插入腾讯视频" value="" class="frm_input"></span><!----></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div></div><div class="tool_bar tr"><a href="javascript:;" class="btn btn_primary edui-default"><!---->发表</a></div></div></div><div class="post_comment_content_container"><div itemprop="text" class="post_comment_content expanded" style="display:;">大佬,目前小程序 web-view 无法打开公众号首页是嘛</div><!----></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><a href="javascript:;" disabled="disabled" class="btn btn_default" style="margin: 12px 0; color: #999">待楼主反馈</a><!----></div><div class="cm-s-default CodeMirror-wrap"><!----><!----></div><!----><!----><div class="post_comment_info" style="display:;"><div class="mobile_post_comment_info_hd"><div class="mobile_post_comment_time">2024-06-27</div><!----><!----></div><div class="post_comment_opr"><div data-component-identifier="comment-like" class="best_comment_agree click "><i class="icon_post_opr icon_agree"></i><span check-reduce class="post_opr_wording">赞 <!----></span></div><!----><div class="js_comment post_opr_meta post_opr_meta_comment_reply"><i class="icon_post_opr discuss"></i><span check-reduce class="post_opr_wording">回复</span></div><!----><!----><!----></div></div><!----><div check-reduce="" class="dialog_wrapper page_mode_dialog_complain dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>请选择投诉理由</h3></div><div class="dialog_bd"><!----><div class="dialog_complain_list"><div class="mod_access"><ul class="access_list"><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">广告内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">违法违规</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">恶意灌水内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">其他</div></li></ul></div></div></div><!----></div></div></div><!----><!----><!----><div><!----></div><div><!----></div></li><!----><li itemprop="comment" itemscope="itemscope" itemtype="http://schema.org/Comment" id="000ea4823fc95016dab1977e661c" class="widget_comment js_post_comment_item post_comment_item with_reanswer"><meta check-reduce itemprop="image"><meta check-reduce itemprop="upvoteCount" content="0"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0006c2511a457876d8b1c921c6b400?jumpto=comment&amp;commentid=000ea4823fc95016dab1977e661c"><meta check-reduce itemprop="dateCreated" content="Thu Jun 27 2024 11:22:17 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="dateModified" content="Thu Jun 27 2024 11:22:17 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="commentCount" content="0"><a href="/community/personal/oCJUswwXU-Lcls2NbW2v7XYy1-UU" target="_blank" class="post_comment_owner"><span class="popover__box popover_appreciate popover__box_hide" data-v-0a980b96><!----><span class="popover_target"><div class="post_comment_owner_avatar"><img src="https://wx.qlogo.cn/mmopen/vi_32/dHKPw72kVPBecLbekXZUh9bN03EVIvesLfJNR9UfdEYxQafvZHROsZGe56NC0FY3GJV4KQuqGURLsn5yvg6tmviayBLq7JM5dpKdVsmApvg0/0" alt="Hlxuan." class="post_comment_owner_avatar_image"></div><strong data-component-identifier="replybox__nick_name" class="post_comment_owner_nickname">Hlxuan.</strong></span></span></a><div class="checking_state_new"><!----><!----><!----><!----><span class="ic_contributer"></span><span class="ic_professor"></span><!----></div><span class="post_comment_pos"><!----><!----><!----><!----><span check-reduce class="post_comment_time">2024-06-27</span></span><span class="reply-comment"><span class="relpy-tips">回复</span><a href="/community/personal/oCJUsw7V6Sm_f0Y_4p4oudc0hRE0" data-component-identifier="replybox__reply_nick_name" target="_blank" class="post_comment_owner_nickname">芜湖,起飞!</a></span><!----><div check-reduce class="post_comment_editor_area comment_editor_box" style="display:none;"><div class="post_comment_content post_editor_box"><div class="mode__rich-text-editor mode__rich-text-editor__normal"><div class="mode__rich-text-editor__header mode__rich-text-editor__header__normal"><div class="mode__rich-text-editor__header__extend"></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__bold"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__bold ql-bold"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>加粗</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__red"><button value="red" class="mode__rich-text-editor__icon mode__rich-text-editor__icon__red ql-red"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>标红</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-code-block"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__code-block ql-code-block"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入代码</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-link"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__link ql-link"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入链接</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-image"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__image ql-image"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入图片</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-video"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__video ql-video"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>上传视频</p></span></div></div><!----><div class="mode__rich-text-editor__body" style="display:none;"></div><div class="mode__rich-text-editor__body" style="display:;"><div> 请 <a>登录</a> 后发表内容 </div></div><div class="dialog_wrapper dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>新增或编辑超链接</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">链接地址</label><div class="frm_controls"><span class="frm_input_box"><input type="text" value="https://" class="frm_input"></span></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div><div class="dialog_wrapper dialog__insert-video dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>插入视频</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">视频链接</label><div class="frm_controls"><span class="frm_input_box"><input type="text" placeholder="仅支持插入腾讯视频" value="" class="frm_input"></span><!----></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div></div><div class="tool_bar tr"><a href="javascript:;" class="btn btn_primary edui-default"><!---->发表</a></div></div></div><div class="post_comment_content_container"><div itemprop="text" class="post_comment_content expanded" style="display:;">是的。</div><!----></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><a href="javascript:;" disabled="disabled" class="btn btn_default" style="margin: 12px 0; color: #999">待楼主反馈</a><!----></div><div class="cm-s-default CodeMirror-wrap"><!----><!----></div><!----><!----><div class="post_comment_info" style="display:;"><div class="mobile_post_comment_info_hd"><div class="mobile_post_comment_time">2024-06-27</div><!----><!----></div><div class="post_comment_opr"><div data-component-identifier="comment-like" class="best_comment_agree click "><i class="icon_post_opr icon_agree"></i><span check-reduce class="post_opr_wording">赞 <!----></span></div><!----><div class="js_comment post_opr_meta post_opr_meta_comment_reply"><i class="icon_post_opr discuss"></i><span check-reduce class="post_opr_wording">回复</span></div><!----><!----><!----></div></div><!----><div check-reduce="" class="dialog_wrapper page_mode_dialog_complain dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>请选择投诉理由</h3></div><div class="dialog_bd"><!----><div class="dialog_complain_list"><div class="mod_access"><ul class="access_list"><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">广告内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">违法违规</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">恶意灌水内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">其他</div></li></ul></div></div></div><!----></div></div></div><!----><!----><!----><div><!----></div><div><!----></div></li><!----><li itemprop="comment" itemscope="itemscope" itemtype="http://schema.org/Comment" id="00064cecc2c69046dab1f3de36b8" class="widget_comment js_post_comment_item post_comment_item with_reanswer"><meta check-reduce itemprop="image"><meta check-reduce itemprop="upvoteCount" content="0"><meta check-reduce itemprop="url" content="https://developers.weixin.qq.com/community/develop/doc/0006c2511a457876d8b1c921c6b400?jumpto=comment&amp;commentid=00064cecc2c69046dab1f3de36b8"><meta check-reduce itemprop="dateCreated" content="Thu Jun 27 2024 11:24:52 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="dateModified" content="Thu Jun 27 2024 11:24:52 GMT+0800 (China Standard Time)"><meta check-reduce itemprop="commentCount" content="0"><a href="/community/personal/oCJUsw7V6Sm_f0Y_4p4oudc0hRE0" target="_blank" class="post_comment_owner"><span class="popover__box popover_appreciate popover__box_hide" data-v-0a980b96><!----><span class="popover_target"><div class="post_comment_owner_avatar"><img src="https://wx.qlogo.cn/mmopen/vi_32/z2qAwoU75HLExGv6YFfMSufqNVYtYjPoia6lTFbpl88mvkGWayA4WAibUMdv83uicaTfTc0BRdm8fL3XtL8QficoIQ/0" alt="芜湖,起飞!" class="post_comment_owner_avatar_image"></div><strong data-component-identifier="replybox__nick_name" class="post_comment_owner_nickname">芜湖,起飞!</strong></span></span></a><div class="checking_state_new"><span title="楼主" class="lz_new"></span><!----><!----><!----><!----><!----><!----></div><span class="post_comment_pos"><!----><!----><!----><!----><span check-reduce class="post_comment_time">2024-06-27</span></span><span class="reply-comment"><span class="relpy-tips">回复</span><a href="/community/personal/oCJUswwXU-Lcls2NbW2v7XYy1-UU" data-component-identifier="replybox__reply_nick_name" target="_blank" class="post_comment_owner_nickname">Hlxuan.</a></span><!----><div check-reduce class="post_comment_editor_area comment_editor_box" style="display:none;"><div class="post_comment_content post_editor_box"><div class="mode__rich-text-editor mode__rich-text-editor__normal"><div class="mode__rich-text-editor__header mode__rich-text-editor__header__normal"><div class="mode__rich-text-editor__header__extend"></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__bold"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__bold ql-bold"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>加粗</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__red"><button value="red" class="mode__rich-text-editor__icon mode__rich-text-editor__icon__red ql-red"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>标红</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-code-block"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__code-block ql-code-block"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入代码</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-link"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__link ql-link"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入链接</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-image"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__image ql-image"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入图片</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-video"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__video ql-video"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>上传视频</p></span></div></div><!----><div class="mode__rich-text-editor__body" style="display:none;"></div><div class="mode__rich-text-editor__body" style="display:;"><div> 请 <a>登录</a> 后发表内容 </div></div><div class="dialog_wrapper dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>新增或编辑超链接</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">链接地址</label><div class="frm_controls"><span class="frm_input_box"><input type="text" value="https://" class="frm_input"></span></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div><div class="dialog_wrapper dialog__insert-video dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>插入视频</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">视频链接</label><div class="frm_controls"><span class="frm_input_box"><input type="text" placeholder="仅支持插入腾讯视频" value="" class="frm_input"></span><!----></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div></div><div class="tool_bar tr"><a href="javascript:;" class="btn btn_primary edui-default"><!---->发表</a></div></div></div><div class="post_comment_content_container"><div itemprop="text" class="post_comment_content expanded" style="display:;">好吧,感谢大佬</div><!----></div><div itemprop="text" class="post_comment_content" style="display:none;"><p>你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。</p><a href="javascript:;" disabled="disabled" class="btn btn_default" style="margin: 12px 0; color: #999">待楼主反馈</a><!----></div><div class="cm-s-default CodeMirror-wrap"><!----><!----></div><!----><!----><div class="post_comment_info" style="display:;"><div class="mobile_post_comment_info_hd"><div class="mobile_post_comment_time">2024-06-27</div><!----><!----></div><div class="post_comment_opr"><div data-component-identifier="comment-like" class="best_comment_agree click "><i class="icon_post_opr icon_agree"></i><span check-reduce class="post_opr_wording">赞 <!----></span></div><!----><div class="js_comment post_opr_meta post_opr_meta_comment_reply"><i class="icon_post_opr discuss"></i><span check-reduce class="post_opr_wording">回复</span></div><!----><!----><!----></div></div><!----><div check-reduce="" class="dialog_wrapper page_mode_dialog_complain dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>请选择投诉理由</h3></div><div class="dialog_bd"><!----><div class="dialog_complain_list"><div class="mod_access"><ul class="access_list"><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">广告内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">违法违规</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">恶意灌水内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">其他</div></li></ul></div></div></div><!----></div></div></div><!----><!----><!----><div><!----></div><div><!----></div></li><!----></ul><!----><!----><!----><!----><!----></div></div><div check-reduce="" class="dialog_wrapper page_mode_dialog_complain dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>请选择投诉理由</h3></div><div class="dialog_bd"><!----><div class="dialog_complain_list"><div class="mod_access"><ul class="access_list"><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">广告内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">违法违规</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">恶意灌水内容</div></li><li class="access_list_item access_list_item_hasMore"><div class="access_list_item_head">其他</div></li></ul></div></div></div><!----></div></div></div><!----><!----><!----><div><!----></div><div><!----></div></li><!----></ul></div></div></div><div check-reduce="" class="pagination_wrp for_pc pagination_pos_right"><!----></div><!----></div><div id="editorframe" check-reduce class="post_comment_editor_area with_post_editor comment_editor_box"><div class="comment_editor_box_body"><span class="post_comment_owner"><img src="https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0?wx_fmt=png" class="post_comment_owner_avatar"></span><div class="mode__rich-text-editor mode__rich-text-editor__normal"><div class="mode__rich-text-editor__header mode__rich-text-editor__header__normal"><div class="mode__rich-text-editor__header__extend"></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__bold"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__bold ql-bold"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>加粗</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__red"><button value="red" class="mode__rich-text-editor__icon mode__rich-text-editor__icon__red ql-red"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>标红</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-code-block"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__code-block ql-code-block"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入代码</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-link"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__link ql-link"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入链接</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-image"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__image ql-image"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>插入图片</p></span></div><div class="weui-desktop-tooltip__wrp weui-desktop-tooltip__wrp__ql-video"><button class="mode__rich-text-editor__icon mode__rich-text-editor__icon__video ql-video"></button><span class="weui-desktop-tooltip weui-desktop-tooltip__" style="display:none;"><p>上传视频</p></span></div></div><!----><div class="mode__rich-text-editor__body" style="display:none;"></div><div class="mode__rich-text-editor__body" style="display:;"><div> 请 <a>登录</a> 后发表内容 </div></div><div class="dialog_wrapper dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>新增或编辑超链接</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">链接地址</label><div class="frm_controls"><span class="frm_input_box"><input type="text" value="https://" class="frm_input"></span></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div><div class="dialog_wrapper dialog__insert-video dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:600px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>插入视频</h3></div><div class="dialog_bd"><!----><div class="frm_control_group"><label for="" class="frm_label">视频链接</label><div class="frm_controls"><span class="frm_input_box"><input type="text" placeholder="仅支持插入腾讯视频" value="" class="frm_input"></span><!----></div></div></div><div class="dialog_ft"><a href="javascript:;" class="btn btn_info">确认</a><a href="javascript:;" class="btn btn_default">取消</a></div></div></div></div></div></div></div><div class="dialog_wrapper dialog_notice dialog_with_head" style="display:none;"><div class="dialog_wrp_new dialog_component" style="width:514px;"><div class="dialog"><a href="javascript:;" class="icon16_opr closed pop_closed">关闭</a><div class="dialog_hd"><h3>关注“微信开放社区”公众号</h3></div><div class="dialog_bd"><!----><p class="dialog_notice_info">关注后,可在微信内接收相应的重要提醒。</p><div class="js_qr_img qrcheck_img_area"><img src="https://res8.wxqcloud.qq.com.cn/community/dist/community/images/community_qrcode_c0a4a0.jpg" alt="" class="qrcheck_img" style="margin:0 auto;"></div><p class="dialog_notice_indicate">请使用微信扫描二维码关注 “微信开放社区” 公众号</p></div><!----></div></div></div></div><!----></div><!----><div class="post_box_others"><div class="block-list public_box detail_extend"><div class="block-list__title detail_extend_hd">相关问题</div><div class="detail_extend_bd"><ul class="detail_extend_list"><li class="detail_extend_list_item"><a href="/community/develop/doc/0000c4497f8370a902804a5c561c00?_at=1732399749519" target="_blank"><!---->小程序webview如何跳转到客服?</a></li><li class="detail_extend_list_item"><a href="/community/develop/doc/000c42ee894388809921e94896bc00?_at=1732399749519" target="_blank"><!---->求助:webview跳转到H5了,H5不能跳转回小程序是为什么?</a></li><li class="detail_extend_list_item"><a href="/community/develop/doc/0000c263c203a08c72825063a6e400?_at=1732399749519" target="_blank"><!---->小程序webview组件支持跳转到公众号模板页面么?</a></li><li class="detail_extend_list_item"><a href="/community/develop/doc/0004a65a214b70d0cf40101896b000?_at=1732399749519" target="_blank"><!---->小程序 通过 web-view跳转到H5页面 ?</a></li><li class="detail_extend_list_item"><a href="/community/develop/doc/000e2ebb638de874e852a4f956c000?_at=1732399749519" target="_blank"><!---->能通过HTTPS链接跳转到小程序吗?</a></li></ul></div></div><div check-reduce="" class="block-list public_box detail_extend"><div class="block-list__title detail_extend_hd">相关文档</div><div class="detail_extend_bd"><ul class="detail_extend_list"><li class="detail_extend_list_item"><a target="_blank" href="https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html" title="web-view: 小程序/开发/组件/开放能力/web-view" class="singleline">web-view: 小程序/开发/组件/开放能力/web-view</a></li><li class="detail_extend_list_item"><a target="_blank" href="https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html#功能描述" title="web-view#功能描述: 小程序/开发/组件/开放能力/web-view" class="singleline">web-view#功能描述: 小程序/开发/组件/开放能力/web-view</a></li><li class="detail_extend_list_item"><a target="_blank" href="https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html#属性说明" title="web-view#属性说明: 小程序/开发/组件/开放能力/web-view" class="singleline">web-view#属性说明: 小程序/开发/组件/开放能力/web-view</a></li><li class="detail_extend_list_item"><a target="_blank" href="https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html#相关接口 1" title="web-view#相关接口 1: 小程序/开发/组件/开放能力/web-view" class="singleline">web-view#相关接口 1: 小程序/开发/组件/开放能力/web-view</a></li><li class="detail_extend_list_item"><a target="_blank" href="https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html#相关接口 2" title="web-view#相关接口 2: 小程序/开发/组件/开放能力/web-view" class="singleline">web-view#相关接口 2: 小程序/开发/组件/开放能力/web-view</a></li></ul></div></div><!----></div></div></div></div></div><div id="footer" check-reduce="" class="foot blur_row page_full"><ul class="links ft"><li class="links_item"><a href="http://www.tencent.com/zh-cn/index.shtml" target="_blank">关于腾讯</a></li><li class="links_item"><a href="https://developers.weixin.qq.com/community/develop/doc/000e2cb63d8c28e6cf79d839b51809" target="_blank">运营规范</a></li><li class="links_item"><a href="https://mp.weixin.qq.com/debug/wxadoc/dev/index.html" target="_blank">文档中心</a></li><li class="links_item"><a href="https://kf.qq.com/faq/17030722muuu170307MFBny2.html" target="_blank">辟谣中心</a></li><li class="links_item"><a href="http://kf.qq.com/product/wx_xcx.html" target="_blank">客服中心</a></li><li class="links_item"><p class="copyright">Copyright © 2012-2025 Tencent. All Rights Reserved.</p></li></ul></div><!----><div check-reduce="" class="mod_get_page_top for_pc" style="display:none;"><div class="get_page_top_inner"><i class="icon icon_page_top"></i></div></div></div><script>window.__INITIAL_STATE__={"$host":"developers.weixin.qq.com","$ua":"Mozilla\u002F4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.21022; .NET CLR 1.0.3705; .NET CLR 1.1.4322)","items":{},"language":"zh-Hans","home":{},"doc_read":{},"doc_read_fetch":false,"appClass":"","pageName":"page_detail","pendingActions":[],"DOCState":"","searchQuery":"","shareImg":"https:\u002F\u002Fres.wx.qq.com\u002Fop_res\u002FdHtIRV4hVzWL3c2ZSXjoG1VcnRC3fENDSGIm_8hOS-9PWFTVVdbPfoGTaJnHJpFm","doc":{"NotFound":false,"Del":false,"Author":{"nickname":"芜湖,起飞!","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002Fz2qAwoU75HLExGv6YFfMSufqNVYtYjPoia6lTFbpl88mvkGWayA4WAibUMdv83uicaTfTc0BRdm8fL3XtL8QficoIQ\u002F0","isOfficialUser":false,"openid":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","svrTime":1739801150,"mediaTicket":"5e64658cd4f439a4f9aaf03299b9be6f68ba2f3c","authority":[]},"DocId":"0006c2511a457876d8b1c921c6b400","BlockType":"1","CreateTime":"1719457969","UpdateTime":"1719457969","Category":"","BlogCategory":"1","Flag":"0","UpVote":"0","DownVote":"0","UpHome":0,"BlogAttr":"1","blogProp":{"normal":1,"top":0,"official":0,"trending":0,"featured":0},"Title":"小程序 使用 web-view 如何跳转到公众号链接?","Content":"\u003Cpre class=\"ql-syntax\" spellcheck=\"false\"\u003E\u003Cspan class=\"hljs-tag\"\u003E&lt;\u003Cspan class=\"hljs-name\"\u003Eweb-view\u003C\u002Fspan\u003E&nbsp;\u003Cspan class=\"hljs-attr\"\u003Esrc\u003C\u002Fspan\u003E=\u003Cspan class=\"hljs-string\"\u003E\"https:\u002F\u002Fmp.weixin.qq.com\u002Fmp\u002Fprofile_ext?action=home&amp;__biz=MzIyMjMzOTEwMA==&amp;scene=124#wechat_redirect\"\u003C\u002Fspan\u003E&nbsp;\u002F&gt;\u003C\u002Fspan\u003E\n\u003C\u002Fpre\u003E\u003Cp\u003E小程序 使用 web-view 如何跳转到公众号链接,跳转到\u003Cspan style=\"font-size: 16px;\"\u003E公众号文章没问题,但是跳转到公众号链接会显示无法打开该页面\u003C\u002Fspan\u003E\u003C\u002Fp\u003E\u003Cp\u003E\u003Cimg src=\"https:\u002F\u002Fmmbiz.qpic.cn\u002Fsz_mmbiz_jpg\u002FhmI8grH3gfCXwzKlBmYTDHBmrgePBTNKXaNWpvPmsibmiaB7Le5BWf0Tve47ZiaOyEVnGtbiaCbRtE9zPNYGSRnseg\u002F0?wx_fmt=jpeg\" \u002F\u003E\u003C\u002Fp\u003E","Introduce":"","Img":"","QuestionAttr":{"appid":"","questionTheme":3,"codepack":""},"Pv":38387,"OpenComments":"1","Comments":{"rows":[{"CommentId":"000a863826c0f0b6dfb1758a668c","DocId":"0006c2511a457876d8b1c921c6b400","Content":"\u003Cp\u003E公众号没得首传统页。可以跳转到专题页\u003C\u002Fp\u003E","UpVote":"0","DownVote":"0","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"","OpenId":"oCJUswyyjmk8Mq5ULo4iPp4zCMeo","ReplyCount":"0","CommentType":"1","CommentAttr":"0","CreateTime":"1719459873","UpdateTime":"1719459873","Flag":"0","BlogCategory":"1","Selected":"","CodeHtml":"","ImgList":"","BlockType":"1","PublishFrom":"0","ParentCommentId":"","ReplyCommentId":"","ReplyOpenId":"","WeChatRemind":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"朱兆恩(易做图)","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FQ3auHgzwzM400SMAq8gDm1XoWvuyYtjvib86HNy5Plkhj7BXiaax0xMA\u002F0","authority":[],"score":0,"Author":{"nickname":"朱兆恩(易做图)","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FQ3auHgzwzM400SMAq8gDm1XoWvuyYtjvib86HNy5Plkhj7BXiaax0xMA\u002F0","isOfficialUser":false,"openid":"oCJUswyyjmk8Mq5ULo4iPp4zCMeo","svrTime":1739801150,"mediaTicket":"38bc6866cedec758ad458c57d1d643830327bbd6","authority":[]},"UserScore":{"OpenId":"oCJUswyyjmk8Mq5ULo4iPp4zCMeo","DS":"20250216","DayDiff":"0","MonthDiff":"0","QuarterDiff":"25300","YearDiff":"300","TotalScore":25300,"DayActionList":"","level":2},"show":true},{"CommentId":"00042c24808c8046d9b1f1d0b614","DocId":"0006c2511a457876d8b1c921c6b400","Content":"\u003Cp\u003E只能打开文章\u003C\u002Fp\u003E","UpVote":"0","DownVote":"0","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"","OpenId":"oCJUsw880y7ik6dy3OYfgqcRWhtM","ReplyCount":"1","CommentType":"1","CommentAttr":"0","CreateTime":"1719458356","UpdateTime":"1719458356","Flag":"0","BlogCategory":"1","Selected":"","CodeHtml":"","ImgList":"","BlockType":"1","PublishFrom":"0","ParentCommentId":"","ReplyCommentId":"","ReplyOpenId":"","WeChatRemind":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"那一抹微笑😊穿透阳光","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FsTJptKvBQLLvich642Tmo3A8XAKcrrS9lDVlIlMrzdk7TVXpRAVOnt3TRTiajs75xGvqDqhjGAWhA\u002F0","authority":[],"score":0,"Sub":[{"CommentId":"0002e028ca0e68b6dab162961660","DocId":"0006c2511a457876d8b1c921c6b400","Content":"好吧,感谢大佬","UpVote":"0","DownVote":"0","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"","OpenId":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","ReplyCount":"0","CommentType":"1","CommentAttr":"0","CreateTime":"1719458689","UpdateTime":"1719458689","Flag":"0","BlogCategory":"1","Selected":"","CodeHtml":"","ImgList":"","BlockType":"1","PublishFrom":"0","ParentCommentId":"00042c24808c8046d9b1f1d0b614","ReplyCommentId":"","ReplyOpenId":"oCJUsw880y7ik6dy3OYfgqcRWhtM","WeChatRemind":"0","IsPersistTemplate":"0","SecurityWarning":"0","Author":{"nickname":"芜湖,起飞!","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002Fz2qAwoU75HLExGv6YFfMSufqNVYtYjPoia6lTFbpl88mvkGWayA4WAibUMdv83uicaTfTc0BRdm8fL3XtL8QficoIQ\u002F0","isOfficialUser":false,"openid":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","svrTime":1739801150,"mediaTicket":"5e64658cd4f439a4f9aaf03299b9be6f68ba2f3c","authority":[]},"UserScore":{"OpenId":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","DS":"20250216","DayDiff":"0","MonthDiff":"100","QuarterDiff":"1300","YearDiff":"100","TotalScore":2000,"DayActionList":"","level":1},"ReplyAuthor":{"nickname":"那一抹微笑😊穿透阳光","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FsTJptKvBQLLvich642Tmo3A8XAKcrrS9lDVlIlMrzdk7TVXpRAVOnt3TRTiajs75xGvqDqhjGAWhA\u002F0","isOfficialUser":false,"openid":"oCJUsw880y7ik6dy3OYfgqcRWhtM","svrTime":1739801150,"mediaTicket":"31e7c0d8c88e2a35697a5af266695cea9fc1664c","authority":[]},"show":true}],"Author":{"nickname":"那一抹微笑😊穿透阳光","headimgurl":"http:\u002F\u002Fwx.qlogo.cn\u002Fmmhead\u002FsTJptKvBQLLvich642Tmo3A8XAKcrrS9lDVlIlMrzdk7TVXpRAVOnt3TRTiajs75xGvqDqhjGAWhA\u002F0","isOfficialUser":false,"openid":"oCJUsw880y7ik6dy3OYfgqcRWhtM","svrTime":1739801150,"mediaTicket":"31e7c0d8c88e2a35697a5af266695cea9fc1664c","authority":[]},"UserScore":{"OpenId":"oCJUsw880y7ik6dy3OYfgqcRWhtM","DS":"20250216","DayDiff":"0","MonthDiff":"1210","QuarterDiff":"437360","YearDiff":"3760","TotalScore":437660,"DayActionList":"","level":5},"medals":16,"show":true},{"CommentId":"00006814bf0a10a6d8b16c1c6664","DocId":"0006c2511a457876d8b1c921c6b400","Content":"\u003Cp\u003E你这个是公众号历史消息链接,目前是不支持在小程序 web-view 组件中打开的,只能打开关联公众号文章链接和后台配置好业务域名的链接。\u003C\u002Fp\u003E","UpVote":"0","DownVote":"0","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"","OpenId":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","ReplyCount":"3","CommentType":"1","CommentAttr":"0","CreateTime":"1719458130","UpdateTime":"1719458130","Flag":"0","BlogCategory":"1","Selected":"","CodeHtml":"","ImgList":"","BlockType":"1","PublishFrom":"0","ParentCommentId":"","ReplyCommentId":"","ReplyOpenId":"","WeChatRemind":"0","IsPersistTemplate":"0","SecurityWarning":"0","nickname":"Hlxuan.","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002FdHKPw72kVPBecLbekXZUh9bN03EVIvesLfJNR9UfdEYxQafvZHROsZGe56NC0FY3GJV4KQuqGURLsn5yvg6tmviayBLq7JM5dpKdVsmApvg0\u002F0","authority":[],"score":0,"Sub":[{"CommentId":"000a08912a06e856d9b1d4e646e4","DocId":"0006c2511a457876d8b1c921c6b400","Content":"大佬,目前小程序 web-view 无法打开公众号首页是嘛","UpVote":"0","DownVote":"0","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"","OpenId":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","ReplyCount":"0","CommentType":"1","CommentAttr":"0","CreateTime":"1719458261","UpdateTime":"1719458261","Flag":"0","BlogCategory":"1","Selected":"","CodeHtml":"","ImgList":"","BlockType":"1","PublishFrom":"0","ParentCommentId":"00006814bf0a10a6d8b16c1c6664","ReplyCommentId":"","ReplyOpenId":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","WeChatRemind":"0","IsPersistTemplate":"0","SecurityWarning":"0","Author":{"nickname":"芜湖,起飞!","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002Fz2qAwoU75HLExGv6YFfMSufqNVYtYjPoia6lTFbpl88mvkGWayA4WAibUMdv83uicaTfTc0BRdm8fL3XtL8QficoIQ\u002F0","isOfficialUser":false,"openid":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","svrTime":1739801150,"mediaTicket":"5e64658cd4f439a4f9aaf03299b9be6f68ba2f3c","authority":[]},"UserScore":{"OpenId":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","DS":"20250216","DayDiff":"0","MonthDiff":"100","QuarterDiff":"1300","YearDiff":"100","TotalScore":2000,"DayActionList":"","level":1},"ReplyAuthor":{"nickname":"Hlxuan.","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002FdHKPw72kVPBecLbekXZUh9bN03EVIvesLfJNR9UfdEYxQafvZHROsZGe56NC0FY3GJV4KQuqGURLsn5yvg6tmviayBLq7JM5dpKdVsmApvg0\u002F0","isOfficialUser":false,"openid":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","svrTime":1739801150,"mediaTicket":"b3317381914b4de4ce3beef44ea8b5c3d462e324","authority":[]},"show":true},{"CommentId":"000ea4823fc95016dab1977e661c","DocId":"0006c2511a457876d8b1c921c6b400","Content":"是的。","UpVote":"0","DownVote":"0","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"","OpenId":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","ReplyCount":"0","CommentType":"1","CommentAttr":"0","CreateTime":"1719458537","UpdateTime":"1719458537","Flag":"0","BlogCategory":"1","Selected":"","CodeHtml":"","ImgList":"","BlockType":"1","PublishFrom":"0","ParentCommentId":"00006814bf0a10a6d8b16c1c6664","ReplyCommentId":"000a08912a06e856d9b1d4e646e4","ReplyOpenId":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","WeChatRemind":"0","IsPersistTemplate":"0","SecurityWarning":"0","Author":{"nickname":"Hlxuan.","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002FdHKPw72kVPBecLbekXZUh9bN03EVIvesLfJNR9UfdEYxQafvZHROsZGe56NC0FY3GJV4KQuqGURLsn5yvg6tmviayBLq7JM5dpKdVsmApvg0\u002F0","isOfficialUser":false,"openid":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","svrTime":1739801150,"mediaTicket":"b3317381914b4de4ce3beef44ea8b5c3d462e324","authority":[]},"board":{"Time":"202501","OpenId":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","Status":"0"},"UserScore":{"OpenId":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","DS":"20250216","DayDiff":"400","MonthDiff":"7800","QuarterDiff":"1095200","YearDiff":"27500","TotalScore":1095200,"DayActionList":"[{\"key\":18,\"value\":100},{\"key\":12,\"value\":300}]","level":7,"expertAuth":0},"ReplyAuthor":{"nickname":"芜湖,起飞!","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002Fz2qAwoU75HLExGv6YFfMSufqNVYtYjPoia6lTFbpl88mvkGWayA4WAibUMdv83uicaTfTc0BRdm8fL3XtL8QficoIQ\u002F0","isOfficialUser":false,"openid":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","svrTime":1739801150,"mediaTicket":"5e64658cd4f439a4f9aaf03299b9be6f68ba2f3c","authority":[]},"medals":30,"show":true},{"CommentId":"00064cecc2c69046dab1f3de36b8","DocId":"0006c2511a457876d8b1c921c6b400","Content":"好吧,感谢大佬","UpVote":"0","DownVote":"0","OfficialUpVote":"0","AuthorUpVote":"0","AuthorDownVote":"","OpenId":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","ReplyCount":"0","CommentType":"1","CommentAttr":"0","CreateTime":"1719458692","UpdateTime":"1719458692","Flag":"0","BlogCategory":"1","Selected":"","CodeHtml":"","ImgList":"","BlockType":"1","PublishFrom":"0","ParentCommentId":"00006814bf0a10a6d8b16c1c6664","ReplyCommentId":"000ea4823fc95016dab1977e661c","ReplyOpenId":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","WeChatRemind":"0","IsPersistTemplate":"0","SecurityWarning":"0","Author":{"nickname":"芜湖,起飞!","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002Fz2qAwoU75HLExGv6YFfMSufqNVYtYjPoia6lTFbpl88mvkGWayA4WAibUMdv83uicaTfTc0BRdm8fL3XtL8QficoIQ\u002F0","isOfficialUser":false,"openid":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","svrTime":1739801150,"mediaTicket":"5e64658cd4f439a4f9aaf03299b9be6f68ba2f3c","authority":[]},"UserScore":{"OpenId":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","DS":"20250216","DayDiff":"0","MonthDiff":"100","QuarterDiff":"1300","YearDiff":"100","TotalScore":2000,"DayActionList":"","level":1},"ReplyAuthor":{"nickname":"Hlxuan.","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002FdHKPw72kVPBecLbekXZUh9bN03EVIvesLfJNR9UfdEYxQafvZHROsZGe56NC0FY3GJV4KQuqGURLsn5yvg6tmviayBLq7JM5dpKdVsmApvg0\u002F0","isOfficialUser":false,"openid":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","svrTime":1739801150,"mediaTicket":"b3317381914b4de4ce3beef44ea8b5c3d462e324","authority":[]},"show":true}],"Author":{"nickname":"Hlxuan.","headimgurl":"https:\u002F\u002Fwx.qlogo.cn\u002Fmmopen\u002Fvi_32\u002FdHKPw72kVPBecLbekXZUh9bN03EVIvesLfJNR9UfdEYxQafvZHROsZGe56NC0FY3GJV4KQuqGURLsn5yvg6tmviayBLq7JM5dpKdVsmApvg0\u002F0","isOfficialUser":false,"openid":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","svrTime":1739801150,"mediaTicket":"b3317381914b4de4ce3beef44ea8b5c3d462e324","authority":[]},"UserScore":{"OpenId":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","DS":"20250216","DayDiff":"400","MonthDiff":"7800","QuarterDiff":"1095200","YearDiff":"27500","TotalScore":1095200,"DayActionList":"[{\"key\":18,\"value\":100},{\"key\":12,\"value\":300}]","level":7,"expertAuth":0},"board":{"Time":"202501","OpenId":"oCJUswwXU-Lcls2NbW2v7XYy1-UU","Status":"0"},"medals":30,"show":true}],"count":3,"page":1,"limit":10,"commentsCount":7},"QuestionComments":{"rows":[],"count":0},"Votes":{},"Fav":{"Count":0,"Fav":false},"Follow":{"Count":0,"Followed":false},"QuestionAnswered":false,"Status":{"delete":false,"audit":false,"draft":false},"Tags":[],"DraftCount":0,"Star":0,"similarBlog":[{"url":"0000c4497f8370a902804a5c561c00","title":"小程序webview如何跳转到客服?","commentNum":7,"isIssue":0,"category":2,"createTime":1697685270,"updateTime":1697694769,"commentTime":1715830913,"_score":46.405754},{"url":"000c42ee894388809921e94896bc00","title":"求助:webview跳转到H5了,H5不能跳转回小程序是为什么?","commentNum":14,"isIssue":0,"category":2,"createTime":1709262104,"updateTime":1709275408,"commentTime":1739437926,"_score":43.930187},{"url":"0000c263c203a08c72825063a6e400","title":"小程序webview组件支持跳转到公众号模板页面么?","commentNum":1,"isIssue":0,"category":2,"createTime":1733363650,"updateTime":1733363650,"commentTime":1734940159,"_score":43.536804},{"url":"0004a65a214b70d0cf40101896b000","title":"小程序 通过 web-view跳转到H5页面 ?","commentNum":7,"isIssue":0,"category":2,"createTime":1694076608,"updateTime":1694076608,"commentTime":1694136977,"_score":41.512287},{"url":"000e2ebb638de874e852a4f956c000","title":"能通过HTTPS链接跳转到小程序吗?","commentNum":3,"isIssue":0,"category":32768,"createTime":1730513306,"updateTime":1730513306,"commentTime":1730683521,"_score":40.98929}],"similarDoc":[{"title":"web-view","content":"基础库 1.6.4 开始支持,低版本需做兼容处理。小程序插件:不支持 微信 Windows 版:支持 微信 Mac 版:支持 微信 鸿蒙 OS 版:支持渲染框架支持情况:WebView","url":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html","routeName":["小程序","开发","组件","开放能力","web-view"],"routeUrl":["https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fad.html","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html"],"level":0,"lastAccessTime":0,"weight":1,"_score":124.3047,"highlight":{"title":["\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"],"routeName":["\u003Cem\u003E小程序\u003C\u002Fem\u003E","\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"]},"docType":"miniprogram","language":1,"description":"渲染框架支持情况:WebView","category":"api"},{"title":"web-view#功能描述","content":"承载网页的容器。会自动铺满整个小程序页面,个人类型的小程序暂不支持使用。客户端 6.7.2 版本开始,navigationStyle: custom 对 web-view 组件无效","url":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html#功能描述","routeName":["小程序","开发","组件","开放能力","web-view"],"routeUrl":["https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fad.html","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html"],"level":1,"lastAccessTime":0,"weight":1,"_score":99.9653,"highlight":{"routeName":["\u003Cem\u003E小程序\u003C\u002Fem\u003E","\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"]},"docType":"miniprogram","language":1,"description":"渲染框架支持情况:WebView","category":"api"},{"title":"web-view#属性说明","content":"属性 类型 默认值 必填 说明 最低版本 src string 否 webview 指向网页的链接。可打开关联的公众号的文章,其它网页需登录小程序管理后台配置业务域名。 1.6.4 bindmes","url":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html#属性说明","table":["src | string | 否 | webview 指向网页的链接。可打开关联的公众号的文章,其它网页需登录小程序管理后台配置业务域名。 | 1.6.4","bindmessage | eventhandler | 否 | 网页向小程序 postMessage 时,会在以下特定时机触发并收到消息:小程序后退、组件销毁、分享、复制链接(2.31.1)。e.detail = { data },data是多次 postMessage 的参数组成的数组。 | 1.6.4","bindload | eventhandler | 否 | 网页加载成功时候触发此事件。e.detail = { src } | 1.6.4","binderror | eventhandler | 否 | 网页加载失败的时候触发此事件。e.detail = { url, fullUrl },其中 fullUrl 为加载失败时的完整 url | 1.6.4"],"routeName":["小程序","开发","组件","开放能力","web-view"],"routeUrl":["https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fad.html","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html"],"level":1,"lastAccessTime":0,"weight":1,"_score":99.9653,"highlight":{"routeName":["\u003Cem\u003E小程序\u003C\u002Fem\u003E","\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"]},"docType":"miniprogram","language":1,"description":"渲染框架支持情况:WebView","category":"api"},{"title":"web-view#相关接口 1","content":"web-view网页中可使用JSSDK 1.3.2提供的接口返回小程序页面。\n支持的接口有:接口名 说明 最低版本 wx.miniProgram.navigateTo 参数与小程序接口一致 1.6.","url":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html#相关接口 1","table":["wx.miniProgram.navigateTo | 参数与小程序接口一致 | 1.6.4","wx.miniProgram.navigateBack | 参数与小程序接口一致 | 1.6.4","wx.miniProgram.switchTab | 参数与小程序接口一致 | 1.6.5","wx.miniProgram.reLaunch | 参数与小程序接口一致 | 1.6.5","wx.miniProgram.redirectTo | 参数与小程序接口一致 | 1.6.5","wx.miniProgram.postMessage | 向小程序发送消息,会在以下特定时机触发组件的message事件:小程序后退、组件销毁、分享、复制链接(2.31.1) | 1.7.1","wx.miniProgram.getEnv | 获取当前环境 | 1.7.1"],"routeName":["小程序","开发","组件","开放能力","web-view"],"routeUrl":["https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fad.html","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html"],"level":1,"lastAccessTime":0,"weight":1,"_score":99.9653,"highlight":{"routeName":["\u003Cem\u003E小程序\u003C\u002Fem\u003E","\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"]},"docType":"miniprogram","language":1,"description":"渲染框架支持情况:WebView","category":"api"},{"title":"web-view#相关接口 2","content":"web-view网页中仅支持以下JSSDK接口:接口模块 接口说明 具体接口 鸿蒙 OS 支持情况 判断客户端是否支持js checkJSApi ✓ 图像接口 拍照或上传 chooseImage ","url":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html#相关接口 2","table":["判断客户端是否支持js | checkJSApi | ✓","图像接口 | 拍照或上传 | chooseImage","预览图片 | previewImage","上传图片 | uploadImage","下载图片 | downloadImage","获取本地图片 | getLocalImgData","音频接口 | 开始录音 | startRecord","停止录音 | stopRecord","监听录音自动停止 | onVoiceRecordEnd","播放语音 | playVoice","暂停播放 | pauseVoice","停止播放 | stopVoice","监听语音播放完毕 | onVoicePlayEnd","上传接口 | uploadVoice","下载接口 | downloadVoice","智能接口 | 识别音频 | translateVoice","设备信息 | 获取网络状态 | getNetworkType | ✓","地理位置 | 使用内置地图打开地点 | openLocation","获取地理位置 | getLocation","摇一摇周边 | 开启ibeacon | startSearchBeacons","关闭ibeacon | stopSearchBeacons","监听ibeacon | onSearchBeacons","微信扫一扫 | 调起微信扫一扫 | scanQRCode | ✓","微信卡券 | 拉取使用卡券列表 | chooseCard","批量添加卡券接口 | addCard","查看微信卡包的卡券 | openCard","长按识别 | 小程序圆形码 | 无"],"routeName":["小程序","开发","组件","开放能力","web-view"],"routeUrl":["https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fad.html","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html"],"level":1,"lastAccessTime":0,"weight":1,"_score":99.9653,"highlight":{"routeName":["\u003Cem\u003E小程序\u003C\u002Fem\u003E","\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"]},"docType":"miniprogram","language":1,"description":"渲染框架支持情况:WebView","category":"api"}],"loading":false,"voteFeedback":{},"OpenId":"oCJUsw7V6Sm_f0Y_4p4oudc0hRE0","Topic":"0","PublishFrom":"0","TopicStartTime":"","TopicEndTime":"","BusinessId":"","QuestionCategory":"2","Hide":"0","OwnerMiniHome":"1277775808983138305","SecurityWarning":"","SimilarQuestion":{"itemList":[{"url":"0000c4497f8370a902804a5c561c00","title":"小程序webview如何跳转到客服?","commentNum":7,"isIssue":0,"category":2,"createTime":1697685270,"updateTime":1697694769,"commentTime":1715830913,"_score":46.405754},{"url":"000c42ee894388809921e94896bc00","title":"求助:webview跳转到H5了,H5不能跳转回小程序是为什么?","commentNum":14,"isIssue":0,"category":2,"createTime":1709262104,"updateTime":1709275408,"commentTime":1739437926,"_score":43.930187},{"url":"0000c263c203a08c72825063a6e400","title":"小程序webview组件支持跳转到公众号模板页面么?","commentNum":1,"isIssue":0,"category":2,"createTime":1733363650,"updateTime":1733363650,"commentTime":1734940159,"_score":43.536804},{"url":"0004a65a214b70d0cf40101896b000","title":"小程序 通过 web-view跳转到H5页面 ?","commentNum":7,"isIssue":0,"category":2,"createTime":1694076608,"updateTime":1694076608,"commentTime":1694136977,"_score":41.512287},{"url":"000e2ebb638de874e852a4f956c000","title":"能通过HTTPS链接跳转到小程序吗?","commentNum":3,"isIssue":0,"category":32768,"createTime":1730513306,"updateTime":1730513306,"commentTime":1730683521,"_score":40.98929}]},"SimilarDoc":{"itemList":[{"title":"web-view","content":"基础库 1.6.4 开始支持,低版本需做兼容处理。小程序插件:不支持 微信 Windows 版:支持 微信 Mac 版:支持 微信 鸿蒙 OS 版:支持渲染框架支持情况:WebView","url":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html","routeName":["小程序","开发","组件","开放能力","web-view"],"routeUrl":["https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fad.html","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html"],"level":0,"lastAccessTime":0,"weight":1,"_score":124.3047,"highlight":{"title":["\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"],"routeName":["\u003Cem\u003E小程序\u003C\u002Fem\u003E","\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"]},"docType":"miniprogram","language":1,"description":"渲染框架支持情况:WebView","category":"api"},{"title":"web-view#功能描述","content":"承载网页的容器。会自动铺满整个小程序页面,个人类型的小程序暂不支持使用。客户端 6.7.2 版本开始,navigationStyle: custom 对 web-view 组件无效","url":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html#功能描述","routeName":["小程序","开发","组件","开放能力","web-view"],"routeUrl":["https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fad.html","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html"],"level":1,"lastAccessTime":0,"weight":1,"_score":99.9653,"highlight":{"routeName":["\u003Cem\u003E小程序\u003C\u002Fem\u003E","\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"]},"docType":"miniprogram","language":1,"description":"渲染框架支持情况:WebView","category":"api"},{"title":"web-view#属性说明","content":"属性 类型 默认值 必填 说明 最低版本 src string 否 webview 指向网页的链接。可打开关联的公众号的文章,其它网页需登录小程序管理后台配置业务域名。 1.6.4 bindmes","url":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html#属性说明","table":["src | string | 否 | webview 指向网页的链接。可打开关联的公众号的文章,其它网页需登录小程序管理后台配置业务域名。 | 1.6.4","bindmessage | eventhandler | 否 | 网页向小程序 postMessage 时,会在以下特定时机触发并收到消息:小程序后退、组件销毁、分享、复制链接(2.31.1)。e.detail = { data },data是多次 postMessage 的参数组成的数组。 | 1.6.4","bindload | eventhandler | 否 | 网页加载成功时候触发此事件。e.detail = { src } | 1.6.4","binderror | eventhandler | 否 | 网页加载失败的时候触发此事件。e.detail = { url, fullUrl },其中 fullUrl 为加载失败时的完整 url | 1.6.4"],"routeName":["小程序","开发","组件","开放能力","web-view"],"routeUrl":["https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fad.html","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html"],"level":1,"lastAccessTime":0,"weight":1,"_score":99.9653,"highlight":{"routeName":["\u003Cem\u003E小程序\u003C\u002Fem\u003E","\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"]},"docType":"miniprogram","language":1,"description":"渲染框架支持情况:WebView","category":"api"},{"title":"web-view#相关接口 1","content":"web-view网页中可使用JSSDK 1.3.2提供的接口返回小程序页面。\n支持的接口有:接口名 说明 最低版本 wx.miniProgram.navigateTo 参数与小程序接口一致 1.6.","url":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html#相关接口 1","table":["wx.miniProgram.navigateTo | 参数与小程序接口一致 | 1.6.4","wx.miniProgram.navigateBack | 参数与小程序接口一致 | 1.6.4","wx.miniProgram.switchTab | 参数与小程序接口一致 | 1.6.5","wx.miniProgram.reLaunch | 参数与小程序接口一致 | 1.6.5","wx.miniProgram.redirectTo | 参数与小程序接口一致 | 1.6.5","wx.miniProgram.postMessage | 向小程序发送消息,会在以下特定时机触发组件的message事件:小程序后退、组件销毁、分享、复制链接(2.31.1) | 1.7.1","wx.miniProgram.getEnv | 获取当前环境 | 1.7.1"],"routeName":["小程序","开发","组件","开放能力","web-view"],"routeUrl":["https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fad.html","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html"],"level":1,"lastAccessTime":0,"weight":1,"_score":99.9653,"highlight":{"routeName":["\u003Cem\u003E小程序\u003C\u002Fem\u003E","\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"]},"docType":"miniprogram","language":1,"description":"渲染框架支持情况:WebView","category":"api"},{"title":"web-view#相关接口 2","content":"web-view网页中仅支持以下JSSDK接口:接口模块 接口说明 具体接口 鸿蒙 OS 支持情况 判断客户端是否支持js checkJSApi ✓ 图像接口 拍照或上传 chooseImage ","url":"https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html#相关接口 2","table":["判断客户端是否支持js | checkJSApi | ✓","图像接口 | 拍照或上传 | chooseImage","预览图片 | previewImage","上传图片 | uploadImage","下载图片 | downloadImage","获取本地图片 | getLocalImgData","音频接口 | 开始录音 | startRecord","停止录音 | stopRecord","监听录音自动停止 | onVoiceRecordEnd","播放语音 | playVoice","暂停播放 | pauseVoice","停止播放 | stopVoice","监听语音播放完毕 | onVoicePlayEnd","上传接口 | uploadVoice","下载接口 | downloadVoice","智能接口 | 识别音频 | translateVoice","设备信息 | 获取网络状态 | getNetworkType | ✓","地理位置 | 使用内置地图打开地点 | openLocation","获取地理位置 | getLocation","摇一摇周边 | 开启ibeacon | startSearchBeacons","关闭ibeacon | stopSearchBeacons","监听ibeacon | onSearchBeacons","微信扫一扫 | 调起微信扫一扫 | scanQRCode | ✓","微信卡券 | 拉取使用卡券列表 | chooseCard","批量添加卡券接口 | addCard","查看微信卡包的卡券 | openCard","长按识别 | 小程序圆形码 | 无"],"routeName":["小程序","开发","组件","开放能力","web-view"],"routeUrl":["https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fframework\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002F","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fad.html","https:\u002F\u002Fdevelopers.weixin.qq.com\u002Fminiprogram\u002Fdev\u002Fcomponent\u002Fweb-view.html"],"level":1,"lastAccessTime":0,"weight":1,"_score":99.9653,"highlight":{"routeName":["\u003Cem\u003E小程序\u003C\u002Fem\u003E","\u003Cem\u003Eweb-view\u003C\u002Fem\u003E"]},"docType":"miniprogram","language":1,"description":"渲染框架支持情况:WebView","category":"api"}]},"originalTags":[]},"user":{"login":false,"isOfficialUser":false,"headimgurl":"https:\u002F\u002Fmmbiz.qpic.cn\u002Fmmbiz\u002FicTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg\u002F0?wx_fmt=png","nickname":"","openid":"","user_name":"","loading":true,"authority":[],"userScore":{},"isPrivacySettingGrant":"0"},"userRecentlyVisited":[],"usercntinfo":{"appreciateByCnt":0,"introduce":"","EnterpriseIntr":"","answerCnt":0,"articleCnt":0,"medalsCnt":0},"notifyUnread":[],"notifyAll":[],"notifySystem":{"list":[],"total":0},"notifyLike":{"list":[],"total":0},"notifySystemNewCount":0,"notifyLikeNewCount":0,"develop":{},"developListLoading":false,"business":{"industry":{"solution":{}},"industries":[],"fullIndustries":{},"list":[],"type":0},"we":{"list":[],"total":0,"listHomepage":[],"totalHomepage":0,"page":1,"limit":6,"subList":[],"subListTotal":0,"subListHomepage":[],"subListTotalHomepage":0,"subListPage":1,"subListLimit":3,"loading":false,"caseRecommendList":[],"weServiceMarket":[],"seriesParent":{},"seriesList":[],"weTags":[],"currentBanner":[],"categories":[],"categoryList1":[],"categoryList1Count":0,"categoryList2":[],"categoryList2Count":0,"categoryList3":[],"categoryList3Count":0,"categoryList4":[],"categoryList4Count":0,"specificCategoryList":[],"courseDetail":{},"recentCourses":[],"homepageDefaultList":[]},"operate":{"homeList":{"list":[],"total":0},"QAList":{"list":[],"total":0},"illegalReport":{"list":[],"total":0}},"votes":{},"enterprise":{"appInfoLoading":false,"appInfo":[],"mpInfoLoading":false,"mpInfo":[],"thirdappList":[],"list":[]},"login":{"gotoLogin":false,"redirect_uri":""},"openData":[{"name":"违法","id":1001,"list":[]},{"name":"外挂","id":1002,"list":[]},{"name":"过度营销","id":1003,"list":[]},{"name":"滥用分享","id":1004,"list":[]},{"name":"类目不符","id":1005,"list":[]},{"name":"iOS虚拟支付","id":1006,"list":[]}],"operateDetail":{"desc":"","content":""},"timelineInfoConfig":{},"github":{},"board":{"list":{"adminList":[],"commonList":[]},"medals":[],"schoolMedals":[],"schoolManage":null},"bindingGithub":false,"articleList":{"rows":[],"count":0},"mixflowList":{"rows":[],"count":0},"auditList":[],"bugtrace":{"blogIssueList":[],"blogHomeIssueList":[],"issueList":[],"issueListCount":0,"bugIssueList":[],"bugIssueListCount":0,"needIssueList":[],"needIssueListCount":0,"isUseBugtrace":false},"hideHeader":false,"showGlobalSearch":true,"hideFooter":false,"iframe":{"content":""},"useNewAskQuestion":"nouse","topicList":{"currentTopic":{},"rows":[],"count":0},"livestream":{},"course":{"info":{},"list":[],"OutterImg":"","Title":"","Introduce":""},"homepageSwiper":[],"homepageDynamicList":[],"homepageRecommendList":[],"homepageMixflowList":[],"weappExposureInfo":{},"personal":{"openid":"","info":{"selfInfo":{},"userInfo":{"openid":""},"appreciateInfo":{"appreciateByCnt":0,"appreciateCnt":0},"userScore":{"level":1}},"getPersonInfoReady":false,"cnt":{},"caseList":[],"caseFetched":false,"question":{"list":[],"total":30},"answer":{"list":[],"total":30},"share":{"list":[],"total":30},"recommend":{"list":[],"total":30},"article":{"list":[],"total":10},"fav":{"list":[],"total":30},"follow":{"list":[],"total":30},"serviceList":[],"minishopOrderList":[],"minishopOrderCount":0,"serviceListLoading":false,"serviceListLoaded":false,"MiniProgramDevelopService":[],"CustomDevelopService":[],"PluginDevelopService":[],"ApiDevelopService":[],"MiniShopService":[],"currentServiceType":1,"servcieDesc":"针对行业、场景的小程序代开发服务,帮助企业快速搭建小程序","devAppInfo":null,"devAppInfoLoading":false},"serviceMarket":{"home":{"miniProgramDevelopService":[],"pluginService":[],"apiService":[],"mcnService":[]},"search":{"saasService":{"total":0,"limit":0,"start":0,"list":[]},"saasProvider":{"total":0,"limit":0,"start":0,"list":[]},"mcnAnchor":{"total":0,"limit":0,"start":0,"list":[]},"mcnAgency":{"total":0,"limit":0,"start":0,"list":[]},"mcnService":{"total":0,"limit":0,"start":0,"list":[]}},"tagConfig":{"info":{"saas":{"industry":[],"scene":[]},"mcn":{"area":[],"serviceIndustry":[]}},"relations":{"serviceType2Industry":{},"serviceType2Scene":{},"industry2Scene":{}},"searchFilters":{"saas":{"industryHome":[],"industry":[],"scene":[]}}},"tagConfigLoaded":false,"keyWord":"","selectTab":1,"service":{"list":[],"total":0,"page":1,"limit":6,"currentServiceType":[],"loading":false,"searchErr":"","funnelLabelList":[],"funnel":null,"currentIndustry":[],"currentApi":[],"currentReqTime":0},"serviceProvider":{"list":[],"total":0,"page":1,"limit":6,"loading":false,"searchErr":"","funnelLabelList":[],"funnel":null},"detail":{"enterpriseInfo":{},"relativeServiceList":[],"service":null,"caseImgList":[],"packageInfo":{},"ratingList":{"page":1,"limit":20,"count":0,"rows":[]},"ratingListSelf":{"count":0,"rows":[]},"sale":{"total":0},"asyncDataReady":false,"authorityServicePlatformType":0},"buyerServiceList":[],"orderList":[],"orderTotal":0,"orderListLoading":false,"orderDetail":{"pkg":{}},"orderId":"","buyPackage":null,"serviceOrderList":[],"serviceOrderTotal":0,"serviceOrderListLoading":false,"serviceOrderData":{"today":0,"history":0,"todayPrice":0,"historyPrice":0},"serviceData":{"servicePV":0,"orderCount":0,"orderPrice":0},"sellerAdmin":{"ratingList":{"page":1,"limit":20,"count":0,"rows":[]},"ratingListLoading":false,"dataStatsOverview":{},"dataQuotaOrderList":[],"dataQuotaOrderListLoading":false},"serviceDraft":{},"serviceDraftFull":{},"serviceAudit":{},"we":{"list":[]},"addPlugin":{"list":[],"availableStatus":1,"pluginCategory":{}},"currentBanner":[],"fund":{"verify":{"step":0,"skipRemit":0}}},"miniHome":{"list":{},"detail":{},"favList":[],"caseList":[],"totalCases":0},"competition":{"id":611099,"nickname":"","headimg":"","gotoLogin":false,"gotoUpload":false,"timeline":[],"minigameTimeline":[],"team":{"teamInfo":{},"members":[],"union":[],"workInfo":{"file":[],"work":{}}},"user":{"MemberId":null,"Mobile":"","Name":"","IdentityType":"0","IdentityNo":"","Detail0":"","Detail1":"","Detail2":"","Detail3":"","whiteuin":0},"userRealMobile":"","teamConfig":[{},{"info":[{"name":""},{"name":""},{"name":""}],"max_member":4}],"schoolConfig":[]},"route":{"name":"docDetail","path":"\u002Fcommunity\u002Fdevelop\u002Fdoc\u002F0006c2511a457876d8b1c921c6b400","hash":"","query":{"_at":"1732399749519"},"params":{"id":"0006c2511a457876d8b1c921c6b400"},"fullPath":"\u002Fcommunity\u002Fdevelop\u002Fdoc\u002F0006c2511a457876d8b1c921c6b400?_at=1732399749519","meta":{},"from":{"name":null,"path":"\u002F","hash":"","query":{},"params":{},"fullPath":"\u002F","meta":{}}}};(function(){var s;(s=document.currentScript||document.scripts[document.scripts.length-1]).parentNode.removeChild(s);}());</script><script src="https://res8.wxqcloud.qq.com.cn/community/dist/community/manifest.2e614345f6dc48ee1b59.js" defer></script><script src="https://res8.wxqcloud.qq.com.cn/community/dist/community/styles.ced71dd18bff17043692.js" defer></script><script src="https://res8.wxqcloud.qq.com.cn/community/dist/community/vendor.23ee57865aaaa34cc4c6.js" defer></script><script src="https://res8.wxqcloud.qq.com.cn/community/dist/community/app.81ba301c274a09b116f9.js" defer></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10