function getId() { var userName = window.sessionStorage.getItem('username') accountTableName = window.sessionStorage.getItem('accountTableName') http(accountTableName+'/session','GET',{},(res)=>{ if(res.code == 0){ updateId = res.data.id; if(res.data != null && res.data.mima != null && res.data.mima != ''){ password = res.data.mima; } else if(res.data != null && res.data.password != null && res.data.password != ''){ password = res.data.password; } } }); }
时间: 2023-06-25 18:04:16 浏览: 117
netty4.1.66.Final+springboot实现websocket交互 免费下载
这是一个 JavaScript 函数,主要用于获取用户的 ID 和密码。具体操作为从 web 存储中获取用户名和帐户表名,然后使用 HTTP GET 请求获取用户的会话信息。如果会话信息中包含密码,则将其存储在变量 password 中。需要注意的是,此代码片段中的 http 函数是一个封装了 XMLHttpRequest 的函数,用于发送 HTTP 请求并处理响应。
阅读全文