Bug/错误解决

Anaconda Spyder点击无响应解决

2020-07-12
问题分析 可能是升级或卸载了spyder依赖的包,导致spyder无法正常运行。 我升级了PyQt5,spyder要求PyQt5<5.13,而安装的最新版本为5.15,导致spyder启动时出现问题。 解决方法 打开Anaconda ...
阅读更多

java.lang.IllegalArgumentException: input == null! 解决方法

2020-03-29
最近在编一个Java游戏,处理图片时遇到如下问题: 完整错误信息 Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: in...
阅读更多

tkinter Text edit_undo()/edit_redo() 没反应解决方法

2020-03-24
问题 tkinter.Text调用edit_undo()和edit_redo()没反应。 问题分析 这是因为没有设置Text的undo参数为True,设置后才能“激活”edit_undo()和edit_redo()。 这个错误难发现是因为它...
阅读更多

微信小程序报错:Component is not found in path "components/comp/comp.js"

2020-02-05
完整错误 jsEnginScriptError: Component is not found in path "components/comp/comp.js" (using by pages/index/index)...
阅读更多

为什么微信小程序设置的onPullDownRefresh无效

2020-02-04
因为仅有onPullDownRefresh是不行的,需要配置: 如果是单个页面需要onPullDownRefresh,在对应页面的json文件中设置"enablePullDownRefresh": true,如: {...
阅读更多

微信小程序-云开发-数据库 报错:-501007 invalid parameters | errMsg: Invalid Key Name: _openid

2020-02-03
微信小程序-云开发-数据库 报错: -501007 invalid parameters | errMsg: Invalid Key Name: _openid 原因: 不能设置_openid,它是云服务器根据用户的openID自动设置的...
阅读更多

wx.showToast中的一个问题

2020-02-02
wx.showToast中的一个问题 wx.showToast({ title: '成功', icon: 'fail', duration: 2000, success: func }) wx.showToast({ title...
阅读更多

使用微信小程序-云开发时报错: Error: errCode: -401003 api parameter type error | errMsg: parameter.data should ...

2020-02-02
错误 Uncaught (in promise) thirdScriptError errCode: -401003 api parameter type error | errMsg: parameter.data should be o...
阅读更多