gpt4 book ai didi

jsp - 如何查找 session 变量是否存在

转载 作者:行者123 更新时间:2023-12-02 08:57:45 25 4
gpt4 key购买 nike

我如何找到值是否在 session 中设置为变量?

if(session.getAttribute("tot_demand"))//need to change

//if value is already set then do this.

else

//if not set then do this.

我需要写什么,上面的代码才能工作?

最佳答案

null比较:

if (session.getAttribute("tot_demand") != null) {
// already set
} else {
// not yet set
}

关于jsp - 如何查找 session 变量是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3599977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com