gpt4 book ai didi

jquery - 聊天室匿名识别

转载 作者:行者123 更新时间:2023-12-01 06:56:09 24 4
gpt4 key购买 nike

我正在尝试使用 ASP.NET 和 ajax/jquery 进行随机聊天。当用户进入聊天室时,我需要一种方法来识别用户并给他一个唯一的 ID,我将用它在我的数据库中记录他的话语。我需要使用session、cookie还是其他东西吗?实现随机聊天的最佳方式是什么?

最佳答案

session :

- Will expire if the user are idle for some time in the chat
- Will be terminated when the browser closes, by the server.
+ Cannot be changed by the user

Cookie

+ Will not expire
+ Will not be terminated on browser close, so the system can identify the user to be the same the next time
- Can be changed by the user

识别用户的绝对最佳方法是数据库(MySQL/Oracle/MSSQL)和cookie的组合。

  • 在 Cookie 中放入随机唯一 key 字符串以识别数据库中的输入。
  • 使用数据库中的输入来保留有关用户的所有信息。

关于jquery - 聊天室匿名识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8755586/

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