
js
yy252756120
这个作者很懒,什么都没留下…
展开
-
js实现禁止刷新页面
我们在写提交页面的时候,有时候会遇到刷新后重复提交的问题,下面的方法采用的是屏蔽法: //禁止用F5键 function document.onkeydown() { if ( event.keyCode==116) { ...2011-08-08 02:02:22 · 1098 阅读 · 0 评论 -
Write operations are not allowed in read-only mode (FlushMode.NEVER)
使用Spring提供的Open Session In View而引起Write operations are not allowed in read-only mode (FlushMode.NEVER) 错误解决: 在没有使用Spring提供的Open Session In View情况下,因需要在service(or Dao)层里把session关闭,所以lazy loading 为true...2011-11-23 18:02:41 · 132 阅读 · 0 评论