We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
类似qq 分组的创建 删除 维护
The text was updated successfully, but these errors were encountered:
handleFriendRequest接受好友请求时,有一个extra参数,然后这个字段会更新到Friend的extra字段中,可以通过这个字段来实现好友分组。
handleFriendRequest
extra
Friend
或者将这个功能,在业务服务上去实现
Sorry, something went wrong.
handleFriendRequest接受好友请求时,有一个extra参数,然后这个字段会更新到Friend的extra字段中,可以通过这个字段来实现好友分组。 或者将这个功能,在业务服务上去实现
方法1不太好,因为好友的extra只有在接受时设置一次,后续不能更改。正确的做法应该是放到业务服务上去实现,记录每个用户的分组列表和每个分组内的情况,然后客户端再CURD这个数据
handleFriendRequest接受好友请求时,有一个extra参数,然后这个字段会更新到Friend的extra字段中,可以通过这个字段来实现好友分组。 或者将这个功能,在业务服务上去实现 方法1不太好,因为好友的extra只有在接受时设置一次,后续不能更改。正确的做法应该是放到业务服务上去实现,记录每个用户的分组列表和每个分组内的情况,然后客户端再CURD这个数据
那是不是也可以加一个设置好友extra的方法?
No branches or pull requests
类似qq
分组的创建 删除 维护
The text was updated successfully, but these errors were encountered: