在html页面中取得session中的值的方法
1.首先呢session的key-value都是存在server的,浏览器html页面是没有办法直接取得session中的值,只有在html里能通过js拿到jesessionid之类的东西。
1.1、数据量如果小,可以考虑放到cookie里,传到客户端,html里用js就可以拿到。
1.2、如果数据量大,可以考虑单独做一个jsp或servlet,根据传来的session的key,返回序列化的session的值,比如json之类的。html里用js通过ajax获取。这种方式复杂了点,多一次远程访问,但是灵活方便。
如:<input type="text" value='<%#session["username"]%>'>
2.或者得通过后台才能获取,session是存在服务器端的,如果你用cookie的话,可以通过js获取。
问题描述:session中保存着userinfo对象,成功登录后,在html中显示“欢迎xxx”
解决方法:通过ajax,json获取userinfo数据,再显示
1.js
<script type="text/javascript" src="js/jquery-1.8.3.js"></script> <script type="text/javascript"> $(function() { $.ajax({ type : "get", url : "login!getloginname.action", datatype : "text", success : function(result) { document.getelementsbytagname('b')[0].innerhtml=result; }, error : function() { alert("請求失敗"); } }); }); </script>
2.页面
<html> <head> <title>管理页面</title> </head> <body> <table> <tr> <td width="74%" height="38" class="admin_txt">管理员:<b></b>您好,感谢登陆使用!</td> </tr> </table> </body> </html>
3.实体:userinfo
public class userinfo { private int userinfoid; private string userinfoname; private string userinfopsw; //省略get,set
4.loginaction中:
public void getloginname() { system.out.println("getloginuser"); httpservletresponse response = servletactioncontext.getresponse(); response.setcontenttype("text/plain;charset=utf-8"); printwriter out; try { string username = ((userinfo) actioncontext.getcontext() .getsession().get("user")).getuserinfoname(); system.out.println(username); out = response.getwriter(); out.print(username); out.flush(); out.close(); } catch (ioexception e) { // todo auto-generated catch block e.printstacktrace(); } }
3.用response.sendredirect("a.html?param=hello");
用下面的js方法
如:
var v=geturlparameter('param'); function geturlparameter( name ){ name = name.replace(/[ ]/,"\[").replace(/[ ]/,"\\\]"); var regexs = "[\\?&]"+name+"=([^&#]*)"; var regex = new regexp( regexs ); var results = regex.exec(window.parent.location.href ); if( results == null ) return ""; else { return results[1]; } }
以上几种方法在html页面中取得session中的值.
总结
到此这篇关于在html页面中取得session中的值的方法的文章就介绍到这了,更多相关html页面取得session值内容请搜索以前的文章或继续浏览下面的相关文章,希望大家以后多多支持!
上一篇: 抖音直播涨粉必备的6大技巧
下一篇: Idea连接数据库并执行SQL语句