没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
sessionScope (JavaScript)
Allows you to share values across pages for the duration of a session.
This global object is based on the Java class com.sun.faces.context.SessionMap which includes the following methods:
put(p0:java.lang.Object, p1:java.lang.Object) : java.lang.Object
get(p0:java.lang.Object) : java.lang.Object
For example, a button on a page might contain the following code for the onClick event:
sessionScope.put("hello", "Hello session");
A label on a second page might have the following formula:
sessionScope.get("hello");
If a user clicks the button on the first page then opens the second page, Hello session appears as the label.
The value persists as long as the session exists. If you close the application, the value is gone.
The name of the value and the value can be any object. For example, you can use the following combinations:
sessionScope.put(1, "Hello session");
sessionScope.get(1);
sessionScope.put("n", 99);
sessionScope.get("n");
You can also assign values as properties. For example, you can assign a value on the first page as follows:
sessionScope.hello = "Hello session";
On the second page, you can reference the value as follows:
sessionScope.hello;
You can bind a sessionScope variable to a control. For Data source, select EL Scopes. For Data binding, select
sessionScope. You will see #{sessionScope.}. Type the name of the variable after the period, for example:
#{sessionScope.hello}
资源评论
weijia3624
- 粉丝: 884
- 资源: 729
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 技术资料分享Z-Stack-API-Chinese非常好的技术资料.zip
- 技术资料分享Z-Stack 开发指南非常好的技术资料.zip
- 技术资料分享Zigbee协议栈中文说明免费非常好的技术资料.zip
- 技术资料分享Zigbee协议栈及应用实现非常好的技术资料.zip
- 技术资料分享ZigBee协议栈的研究与实现非常好的技术资料.zip
- 技术资料分享ZigBee协议栈的分析与设计非常好的技术资料.zip
- 技术资料分享Zigbee协议栈OSAL层API函数(译)非常好的技术资料.zip
- 技术资料分享zigbee无信标网络设备的加入非常好的技术资料.zip
- 技术资料分享ZigBee问答之“KVP”、“MSG”非常好的技术资料.zip
- 技术资料分享ZigBee网络管理实验例程手册非常好的技术资料.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功