- 社区网站样式错乱,z-index不够,间距不够
我的购买页面样式错误 https://fuwu.weixin.qq.com/manage/orderlist [图片]
2021-04-30 - WXWebAssembly.instantiate初始化报错Invalid opcode 0xf?
使用WXWebAssembly.instantiate胶水代码报错,报Invalid opcode 0xfe wasm: CompileError: WebAssembly.instantiate(): Compiling function #67 failed: Invalid opcode 0xfe (enable with --experimental-wasm-threads https://www.gitmemory.com/issue/emscripten-core/emscripten/13152/755583956 小程序支持SharedArrayBuffers吗?如果不支持编译wasm时应该如何屏蔽呢? 微信8.0.2之后,使用WXWebAssembly.instantiate初始化的时候各种报错,8.0.1之前编译opencv胶水代码到wasm,使用compile api可以正常编译启动,之后就报错了
2021-04-15 - WXWebAssembly.instantiate方法的第一个参数,如何通过远程下载本地实例化?
根据报错提示,第一个参数需要传入一个绝对路径的.wasm文件,如pages/index/hello.wasm 如果需要将远程的wasm下载到本地再实例化应该如何实现呢,报错明确提示了,不能以wxfile://或http的文件路径开头,所有还有其他读取存储后文件绝对路径的且获取出来不为wxfile:前缀的绝对路径,api可以调用吗? wasm资源文件超出了2m,希望可以走远程下载到本地再实例化 const info = {}; const cloudWasm = 'https://cdn.com/hello.wasm' wx.downloadFile({ url:cloudWasm, success:res=>{ const {tempFilePath} = res; // 如何将tempFilePath转成绝对路径呢? const fs = wx.getFileSystemManager(); const { env:{ USER_DATA_PATH } } = wx; // 当前用户设备的环境目录 const wasmfilename = tempFilePath.slice(tempFilePath.lastIndexOf('/') + 1);// 提取文件名和后缀 fs.saveFileSync(tempFilePath, wasmdir + wasmfilename); const wasmdir = USER_DATA_PATH + "/wasm/"; // 在当前用户环境下新建一个目录 const obsoluteWasmFilePath = `${tempFilePath}/${wasmfilename}`; WXWebAssembly.instantiate(obsoluteWasmFilePath,info).then(suc=>{ console.log('初始化成功') },err=>{ console.log('初始化失败') }) } } )
2021-04-07 - WXWebAssembly.instantiate传文件路径不支持,ArrayBuffer也不支持?
Error: WebAssembly.instantiate: not support wxfile: or http: path WXWebAssembly这个方法在华为mate20 微信版本8.0.2,libVersion 2.16.0上报不支持wxfile path,传入arraybuffer也报错 实例化的时候,由于没有compile对象,所以想到了直接使用WXWebAssembly.instantiate来实例化
2021-04-06 - Webassembly安卓还可用吗,安卓人脸tensflow检测速度优化关键点在哪wasm胶水代码?
tensflow人脸检测关键点安卓或者iso检测速度关键技术痛点在哪? 达到每秒10-15帧的检测速度,是否一定要依赖于wasm或者asm.js的技术加持 Webassembly安卓还可用吗,看微信官方AR插件和其他第三方插件实现了AR人脸检测的功能 可以给个官方答案吗?wasm ?@tensorflow/tfjs-backend-wasm 胶水代码?asm.js ?
2021-03-20 - 小程序引入@tensorflow/tfjs-backend-wasm各种报错?
有遇到类似情况的吗 基础库2.10.4 报Error: module "@tensorflow/tfjs-backend-wasm" is not defined
2021-03-20 - 引入@tensorflow/tfjs-backend-wasm的时候各种报错?
VM3547 WAService.js:2 Error: module "miniprogram_npm/@tensorflow/tfjs-backend-wasm/path.js" is not defined import {setWasmPath,setWasmPaths} from '@tensorflow/tfjs-backend-wasm'; const fetchWechat = require('fetch-wechat') const tf = require('@tensorflow/tfjs-core'); const webgl = require('@tensorflow/tfjs-backend-webgl'); const plugin = require('./plugin/index.js'); 引入方式如下,小程序各种报错,要么低版本的报setWasmPath undefined 3.0.0版本的又报miniprogram_npm/@tensorflow/tfjs-backend-wasm/path.js is not find 有人遇到过这种情况吗?求助
2021-03-20 - 怎样获取导航栏高度,screenTop-statusBarHeight是否等于导航栏高度?
wx.getSystemInfo(Object object) 以下计算导航栏高度的方式对吗? // 胶囊(系统默认退出按钮)距离状态栏顶部的距离 const { top:capsuleTop, height:capsuleHeight } = capsule; // 胶囊(垂直居中)的上下间距 const capsuleVerticalSpace = (capsuleTop - statusBarHeight) * 2; // 导航栏高度 = 胶囊高度和垂直居中间距相机 const navBarHeight = capsuleHeight + capsuleVerticalSpace; // 状态栏和导航栏总高度 const statusNavBarHeight = statusBarHeight + navBarHeight; // 内容区域高度: 不包含状态栏和导航栏 const { height:contentHeight } = safeArea || {};
2021-02-23 - screenTop===statusBarHeight+navBarHeight
https://developers.weixin.qq.com/miniprogram/dev/api/base/system/system-info/wx.getSystemInfo.html iphone se最新版 statusBarHeight = 20 capsule.height = 24 为何screenTop高度为64,通过胶囊区域计算出来的导航栏和状态栏高度之和却为60,应该以哪个为准呢? 以下计算状态栏和导航栏的高度之和的方式对吗? const capsule = wx.getMenuButtonBoundingClientRect(); const systemInfo = wx.getSystemInfoSync(); const { statusBarHeight,safeArea, } = systemInfo || {}; // 胶囊(系统默认退出按钮)距离状态栏顶部的距离 const { top:capsuleTop, height:capsuleHeight } = capsule; // 胶囊(垂直居中)的上下间距 const capsuleVerticalSpace = (capsuleTop - statusBarHeight) * 2; // 导航栏高度 = 胶囊高度和垂直居中间距相机 const navBarHeight = capsuleHeight + capsuleVerticalSpace; // 状态栏和导航栏总高度 const statusNavBarHeight = statusBarHeight + navBarHeight; // 内容区域高度: 不包含状态栏和导航栏 const { height:contentHeight } = safeArea || {}; console.log(systemInfo,'systemInfo'); console.log(capsule,'胶囊信息'); const extendSystemInfo = { ...systemInfo,statusNavBarHeight,navBarHeight,capsule,contentHeight }
2021-02-23