- onShareAppMessage中imageUrl可以使用临时文件路径吗?
onShareAppMessage中imageUrl可以使用wx.canvasToTempFilePath中的临时文件路径吗? 或者imageUrl 可以使用canvas后使用其它方法生成的路径吗
2023-06-06 - 微信浏览器 可以修改右上角点击在safari中打开的链接吗?
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html 微信浏览器 可以修改右上角点击在safari中打开的链接吗?
2022-01-14 - 开发版和正式版storage数据共用?
开发版和正式版storage数据共用
2021-12-06 - scroll-view设置横向滚动 在不滚动的时候不显示滚动条,想让滚动条一直显示应该怎么设置?
[图片] [图片]
2021-12-02 - scroll-view 设置滚动条显示不生效
无法显示滚动条 <scroll-view scroll-x="{{true}}" enable-flex="{{true}}" enhanced="{{true}}" show-scrollbar="{{true}}" class="nav_course" > <view> 111111111 </view> </scroll-view>
2021-11-26 - rich-text 设置样式 position 定位无效?
[图片]
2021-08-19 - iPhone 8,iPhone se 页面白屏
iPhone 8 iOS 13.6 页面白屏 可以调接口 <view class="container"> <view id="luckdraw_box"> <view id="luckdraw_back"> <image style='transform:rotate({{ change_angle}}deg)' mode="scaleToFill" src="/resources/images/circle.png"></image> </view> <view id="luckdraw_pointer" > <image mode="scaleToFill" bindtap='luckDrawStart' src="/resources/images/needle.png"></image> <button wx:if="{{!isRegisted}}" open-type="getPhoneNumber" class="hide-phone" bindgetphonenumber="getPhoneNumber">注册</button> </view> </view> </view> wxss #luckdraw_box{ width:531rpx; height:531rpx; margin:0 auto; position:relative; } #luckdraw_back{ width: 100%; height: 100%; } #luckdraw_back image{ display: block; width: 100%; height: 100%; transform-origin:center center; } #luckdraw_pointer{ width:174rpx; height:228rpx; position:absolute; left:178.5rpx; z-index:999; top:132.5rpx; } #luckdraw_pointer image{ display: block; width: 100%; height: 100%; } #luckdraw_box { margin-top: 200rpx; } .hide-phone{ position: relative; top: -145rpx; opacity: 0; }
2021-04-29 - 小米9 MIUI 12.0.2 android10 <iframe>空白?
[图片]
2020-08-17 - wx-open-launch-weapp 不展示按钮?
<template> <wx-open-launch-weapp id="launch-btn" username="gh_bbc1673996b8" path="/pages/index/index.html" @ready="launchAppReady" > <script type="text/wxtag-template"> <style>.btn { padding: 12px }</style> <button class="btn">打开小程序</button> </script> </wx-open-launch-weapp> </template> <script> wx.config({ beta: true, // debug: true, // 开启调试模式 appId: appid, // 必填,公众号的唯一标识 timestamp: timestamp, // 必填,生成签名的时间戳 nonceStr: nonceStr, // 必填,生成签名的随机串 signature: nonceStr, // 必填,签名,见附录1 jsApiList: [ "updateAppMessageShareData", "updateTimelineShareData" ], openTagList: ["wx-open-launch-app"] // 可选,需要使用的开放标签列表,例如['wx-open-launch-app'] }); wx.ready(function() { console.log(11111111111); }); wx.error(function(res) { console.log(res); }); </script> [图片]
2020-07-29 - textarea在android真机 页面滚动 内容跟着滚动
[图片] 父级 弹窗 fixed定位
2020-07-01