请问楼主解决了吗?我现在也遇到了这个问题
微信小程序 textarea的placeholder文案换行ios可以,安卓不行?微信小程序 textarea的placeholder文案换行真机ios可以,安卓不行,开发者工具也不支持~ 应该怎么实现换行呢? 希望实现的效果:[图片] 实际效果:[图片]
2021-12-15请问最后怎么解决的?我这边也遇到了
部分安卓手机调用wx.onBluetoothDeviceFound无法执行回调?[图片][图片][图片][图片] 如上面两部手机在官方小程序示例里的蓝牙扫描不到设备,经调试发现是onBluetoothDeviceFound调用不会执行回调导致的,源代码跟官方示例一样,代码片段:https://developers.weixin.qq.com/s/pQU51zmz7a3K 请官方尽快核实上述机型:oppoR11plus、oppoR9s的蓝牙查找问题,谢谢~
2021-11-25你们最后怎么解决的?我们现在也需要做加密。
请问大家,微信小程序有通过npm安装使用的密码椭圆曲线库吗?大家好,希望有一个椭圆曲线密码js库,可以在小程序端做曲线上的点加,点乘等操作,小程序国密库miniprogram-sm-crypto好像没提供单独的这种基本操作接口。我试过elliptic,secp256k1, curve25519都是nodejs环境的,与微信小程序不匹配。有哪位大神出来推荐个可用的,或者说目前就没有可用的椭圆曲线密码库?非常感谢!
2021-11-15你好,我也遇到了这个问题,连续点击textarea组件的输入框,会出现页面向上移动的情况
textarea使用adjust-position在苹果6sp上,一直点击输入框,页面会一直上推?textarea使用adjust-positio在苹果6sp上,一直点击输入框,页面会一直上推,使其作用域都上移了,下图为正常情况下的输入模块的作用域: [图片] 使用苹果6sp,然后一直点击输入框,页面就会上移,然后输入区域的作用域也上移了,如下图: [图片]
2021-07-16这个问题解决了吗?
readPixels接口只要有子域,调用就会失败,返回全0吗版本库2.6.4, 2.6.5有问题 截图分享功能,在有微信子域的情况下,CocosCreator 使用RenderTexture渲染后,调用readPixels 返回全0数据,移除微信子域恢复正常 是不是只要有子域, 调用readPixels接口就会失败 如果不是我该如何处理 ?
2020-01-06const { ccclass, property } = cc._decorator; @ccclass export default class Test extends cc.Component { @property(cc.Camera) camera: cc.Camera = null; //相机 @property(cc.Node) sprite: cc.Node = null; //需要去截的图 @property(cc.Node) drawsprite: cc.Node = null; //截图后放入该节点 // LIFE-CYCLE CALLBACKS: // onLoad () {} start() { let gpTexture = new cc.RenderTexture(); //绘制 //@ts-ignore gpTexture.initWithSize(cc.winSize.width, cc.winSize.height, cc.game._renderContext.STENCIL_INDEX8); // gpTexture.initWithSize(this.sprite.width, this.sprite.height); this.camera.targetTexture = gpTexture;//相机绘制,将屏幕上的内容更新到renderTexture中 this.camera.render(this.sprite); let v: cc.Vec2 = this.node.convertToWorldSpaceAR(this.sprite.getPosition()) let x = v.x - this.sprite.width * this.sprite.anchorX; let y = v.y - this.sprite.height * this.sprite.anchorY; let data: Uint8Array; // console.log("drawData",x,y,node.width,node.height); data = gpTexture.readPixels(data, x, y, this.sprite.width, this.sprite.height);//读取renderTexture中的数据 // data = gpTexture.readPixels();//读取renderTexture中的数据 let canvas = this.createCanvasByDate(data, this.sprite.width, this.sprite.height); let texture = new cc.Texture2D(); texture.initWithElement(canvas); let spriteFrame = new cc.SpriteFrame(); spriteFrame.setTexture(texture); this.drawsprite.getComponent(cc.Sprite).spriteFrame = spriteFrame; } //根据纹理data返回canvas createCanvasByDate(data: Uint8Array, width: number, height: number) { let canvas; if (cc.sys.platform === cc.sys.WECHAT_GAME) { canvas = wx.createCanvas(); } else { canvas = document.createElement('canvas'); } canvas.width = width; canvas.height = height; let ctx = canvas.getContext('2d'); let rowBytes = width * 4; for (let row = 0; row < height; row++) { let srow = height - 1 - row; let imageData = ctx.createImageData(width, 1); let start = srow * width * 4; for (let i = 0; i < rowBytes; i++) { imageData.data[i] = data[start + i]; } ctx.putImageData(imageData, 0, row); } return canvas; } // update (dt) {} }
接入子域后 为什么截图失效?获得的图片信息全是空白?在2.9.4微信基础库 不行 在2.6.0基础库的时候又可以?
2019-12-11