1. jQuery上传插件Uploadify出现Http Error 302错误解决
http://fanshuyao.iteye.com/blog/1751684

2. intllij idea卡死,强制重启后报错:java.lang.AssertionError:upexpected content storage modification
参考: http://blog.youkuaiyun.com/phantomes/article/details/42002495

3. Mybatis的if test字符串比较问题
<if test="isExpired=='Y'">
and msg.expire_time < now()
</if>
会报NumberFormatException,这样就可以了。
<if test="isExpired=='Y'.toString()">
and msg.expire_time < now()
</if>
参考: http://blog.youkuaiyun.com/dchjmichael/article/details/8860039
4. mysql错误:Column 'id' in field list is ambiguous的解决方法
5. ueditor编辑文章时候,复制粘贴内容,原来的图片不能显示
参考: http://blog.youkuaiyun.com/wang_quan_li/article/details/25289147?utm_source=tuicool&utm_medium=referral
百度UEditor编辑器如何关闭抓取远程图片功能 http://www.jb51.net/article/61691.htm
远程图片抓取功能 源码中位置可以搜索 UE.plugins['catchremoteimage'] 这个内容在ueditor.config.js中是有明确配置(catchRemoteImageEnable)的,默认是开启的状态,如果不想用这个功能,就可以关闭掉,那么也就不会存在图片显示不出来的情况了
立马加在:ueditor.config.js 加上配置参数
//抓取远程图片是否开启,默认true
,catchRemoteImageEnable:false
然后编辑器页面,刷新,然后复制粘贴远程图片,这时不再向服务端发送get请求catchimage。

本文讨论并提供了关于jQuery上传插件Uploadify出现HttpError302错误的解决方案,介绍了IntelliJ IDEA卡死后的强制重启后报错问题,阐述了Mybatis的iftest字符串比较问题的解决方法,解答了MySQL错误:Column'id'infieldlistisambiguous的解决策略,以及UEditor编辑文章时复制粘贴内容导致的图片不能显示的问题。

1819

被折叠的 条评论
为什么被折叠?



