- 企业微信中使用小程序tensorflow插件闪退?
就一个空白测试页面,只引用了tensorflow,在微信小程序中一切正常,但是在企业微信中会直接闪退 import { View } from '@tarojs/components'; import Taro, { requirePlugin } from '@tarojs/taro'; import * as webgl from '@tensorflow/tfjs-backend-webgl'; import * as tf from '@tensorflow/tfjs-core'; import React from 'react'; import { fetchFunc, setWechatFetch } from 'fetch-wechat'; setWechatFetch(false); export default class Test extends React.Component { componentDidMount(): void { const tfjsPlugin = requirePlugin('tfjsPlugin'); Taro.setInnerAudioOption({ obeyMuteSwitch: false, }); tfjsPlugin.configPlugin({ fetchFunc: fetchFunc(), tf, webgl, canvas: Taro.createOffscreenCanvas(), }); } render() { return <View></View>; } }
2023-06-09 - 企业微信打开横屏页面,摄像头画面上下颠倒
用企业微信打开横屏页面,摄像头画面上下颠倒
2023-02-03 - 如果有【人力资源服务】类目,可以在小程序里播放视频吗?
如果有【人力资源服务】类目,可以在小程序里播放视频吗?
2020-11-25 - 企业微信是否支持jssdk1.6.0?
使用1.6.0的jssdk总是提示signature错误,而使用企业微信开发文档里提供的1.2.0 提示config:ok
2020-09-03 - wmpf中的webview支持jweixin-1.3.2.js吗?
在wmpf中的webview 使用wx.miniProgram.navigateTo无法跳转到原生页面
2020-04-22