各种报错总结分析
爱吃鱼的喵996
这个作者很懒,什么都没留下…
展开
-
关于windows窗口编程过程中编译的错误
Compiling...GetSystemMetrics.cpperror C2065: 'SM_MOUSEWHEELPRESENT' : undeclared identifiererror C2065: 'SM_XVIRTUALSCREEN' : undeclared identifiererror C2065: 'SM_YVIRTUALSCREEN' : undeclared identifiererror C2065: 'SM_CXVIRTUALSCREEN' : undeclared i原创 2021-02-19 22:20:45 · 395 阅读 · 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 · 524 阅读 · 0 评论 -
sublime Text3 编辑器中 ANSI编码的汉字出现乱码
打开sublime按键Ctrl + Shift + p输入install package回车再输入ConvertToUTF8回车若左下角有说明正在安装ConvertToUTF8插件,安装完成后再打开ASNI编码的文件就不会出现乱码了原创 2021-02-18 21:37:43 · 1925 阅读 · 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-lightTry: apt install <selected package>使用绝对路径使用命令:nginx: [error] invalid PID number "" in "/usr/local/nginx/logs/nginx.pid"p原创 2021-02-01 12:08:03 · 658 阅读 · 1 评论 -
关于 request.getRequestDispatcher 页面跳转中文乱码
jsp页面设置好utf-8编码然后用到的java文件里面的PrintWriter out = response.getWriter();注释掉这样在该java文件里面使用request.getRequestDispatcher跳转到另一个界面就不会乱码了。原创 2020-11-21 10:38:44 · 1103 阅读 · 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 · 744 阅读 · 0 评论