
各种报错总结分析
爱吃鱼的喵996
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
关于windows窗口编程过程中编译的错误
Compiling... GetSystemMetrics.cpp error C2065: 'SM_MOUSEWHEELPRESENT' : undeclared identifier error C2065: 'SM_XVIRTUALSCREEN' : undeclared identifier error C2065: 'SM_YVIRTUALSCREEN' : undeclared identifier error C2065: 'SM_CXVIRTUALSCREEN' : undeclared i原创 2021-02-19 22:20:45 · 421 阅读 · 0 评论 -
关于windows创建窗口的错误
error LNK2001: unresolved external symbol __imp__PlaySoundA@12] 文件开头加入这一段代码 #pragma comment(lib, “winmm.lib”) error LNK2001: unresolved external symbol _main [Project] --> [Settings] --> 选择"Link"属性页, 在Project Options中将/subsystem:console改成/subsystem:w原创 2021-02-18 21:38:42 · 556 阅读 · 0 评论 -
sublime Text3 编辑器中 ANSI编码的汉字出现乱码
打开sublime 按键Ctrl + Shift + p 输入install package回车 再输入ConvertToUTF8回车 若左下角有 说明正在安装ConvertToUTF8插件,安装完成后再打开ASNI编码的文件就不会出现乱码了原创 2021-02-18 21:37:43 · 2019 阅读 · 0 评论 -
The program ‘nginx‘ can be found in the following packages: * nginx-core * nginx-extras * nginx-f
若报错: The program 'nginx' can be found in the following packages: * nginx-core * nginx-extras * nginx-full * nginx-light Try: apt install <selected package> 使用绝对路径使用命令: nginx: [error] invalid PID number "" in "/usr/local/nginx/logs/nginx.pid" p原创 2021-02-01 12:08:03 · 705 阅读 · 1 评论 -
关于 request.getRequestDispatcher 页面跳转中文乱码
jsp页面设置好utf-8编码 然后 用到的java文件里面的 PrintWriter out = response.getWriter();注释掉 这样在该java文件里面使用request.getRequestDispatcher跳转到另一个界面就不会乱码了。原创 2020-11-21 10:38:44 · 1148 阅读 · 0 评论 -
Uncaught TypeError: $(...).swipeout is not a function
问题: 在使用weui的滑块删除组件的时候,有时候会出现这种错误 Uncaught TypeError: $(…).swipeout is not a function 原因是在引用weui的时候,也引用了jquery,并且jquery引用在这段代码的前面,造成冲突 $('.delete-swipeout').click(function() { $(this).parents('.we...原创 2020-04-06 15:20:29 · 775 阅读 · 0 评论