Html上按钮IOS无法点击,安卓可以
问题原因
1 | a) 用jquery的live方法绑定的click事件点击无效 |
解决办法
1 | a) 将 click 事件直接绑定到目标元素(即 .target)上 |
spring错误context:property-placeholder:Could not resolve placeholder XXX in string value XXX
问题原因
1 | 明明配置了properties来加载db配置文件的数据,但是spring提示无法找到对应的key |
解决办法
1 | a) <context:property-placeholder location="classpath:properties/db.properties,classpath:properties/mongodb.properties"/>privileged=true”) |
nginx 出现504 Gateway Time-out
问题原因
1 | a) 一般是由于程序执行时间过长导致响应超时,例如程序需要执行90秒,而nginx最大响应等待时间为30秒,这样就会出现超时。 |
解决办法
1 | a) Sql查询时间过长,调整数据结构,添加字段 |