SSH项目,访问jsp页面出现报错,控制台显示报错信息: org.springframework.orm.hibernate3.HibernateQueryException: unexpected token: * near line 1, column 8 [select * from tb_chaper where course_id = 2]; nested exception is org.hibernate.hql.ast.QuerySyntaxException: unexpect…
django.db.utils.InternalError: (1060, "Duplicate column name 'user_id'")迁移报错解决方法 django.db.utils.InternalError: (1060, "Duplicate column name 'user_id'") 错误的主要原因: ​ 数据库中已经含有相应的字段了 解决方法: ​ 修改Models表中重复的字段名,尤其是设置外键的字段名很容易出现字段名重复,…
在尝鲜vuex2时,发现vuex2增加了 mapGetters 和 mapActions 的方法,借助stage2的 Object Rest Operator 特性,可以写出下面代码:methods: { marked, ...mapActions([ 'getArticles' ])}但是在借助babel编译转换时发生了报错: BabelLoaderError: SyntaxError: Unexpected token .解决方案在vuex的repo issues中有人提过这样的问题,后来是…
SSH 密钥签名失败 情景: 使用 SSH 密钥验证身份时 报错: sign_and_send_pubkey: signing failed: agent refused operation 环境: Debian 9.7 (Stretch) 解决方法: 1)确认问题 在 SSH 命令前添加"SSH_AUTH_SOCK=0": SSH_AUTH_SOCK=0 ssh <username>@<server> 如果可以正常登录,而显示变量 SSH_AUTH_SOCK…
最近手动导入AFNetworking 2.6.0框架时发现Xcode报如下3个错误: 1. Use of undeclared identifier ‘kSecFormatUnknown‘ 2. Use of undeclared identifier ‘kSecItemPemArmour‘ 3. Implicit declaration of function ‘SecItemExport‘ is invalid in C99 查询后发现, 解决方法有如下两种: 第一种: 通过CocoaPod…
​ git上下载的thinkphp5框架使用.gitignore没上传依赖,需要通过composer进行下载依赖,使用composer install或者composer update即可解决.…
由于当天多次输入错误密码,ssh和putty就连接不上了,纠结了很久解决问题 ssh连接提示错误:server unexpectedly closed network connection putty 连接提示错误 问题原因是:服务器安装了Denyhosts,会周期性的扫描/var/log/auth.log,找出通过ssh反复失败访问系统的行为来源然后将他们添加到/etc/hosts.deny中禁止这些ip连接,解决方式:修改/etc/ssh/sshd_config 查找 MaxStartups…
原因:有可能是兼容性问题 解决方法: 1.sudo dpkg-reconfigure dash   2.在弹出的窗口选择no…
记录个报错: 问题描述: 经过服务器生成图片返到前台时,在火狐浏览器中下载图片或打开图片时报错:SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data 经分析是服务器配置的问题,缺少了能够解析json的配置信息,导致浏览器向服务器发出请求时,服务器不能处理html文件里面的js引用,所以一直在loading状态,而不能返回html页面. 网上搜了一下,解决方案是,在nginx的配置信息里加…
SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data 我在使用$.parseJSON解析后台返回的JSON的数据时,出现了这样的错误,我还以为返回的JSON格式出现了错误,因为JSON要求格式非常严格.最后发现JSON格式没有太明显的格式错误,我使用fastJSON来生成的JSON格式数据,原来是因为数据已经是一个JavaScript对象了,所以在进行解析就会出错了 我直接将这段数据al…