cakephp中如何实现用户好友关系?
我是 cakephp 的新手。
我正在开发我的社交网络项目。我有用户和朋友关系的
概念。
我在发送好友请求和接受方面遇到问题......
我不明白如何开始这个概念......
如果有人从事此类工作,那么请帮助我......
I am new to cakephp.
I am working on my Social network project.I am having users and friends relationship
concept.
I am having problem in sending friend request and accepting .....
I am not understanding how to start on this concept...
If anybody worked on such things then please help me..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个新的
FriendRequest
模型。belongTo User
和hasOne Friend
。另外,User hasMany FriendRequest
然后,为FriendRequest
模型提供一个布尔字段(cakePHP 使用TINYINT(1)
作为布尔值)来跟踪接受情况。FriendRequest
记录。hasMany
列出用户发送的所有FriendRequest
记录FriendRequest
记录搜索所有属于用户的朋友
。TRUE
。You could make a new
FriendRequest
model.belongTo User
andhasOne Friend
. Also,User hasMany FriendRequest
Then, give theFriendRequest
model a boolean field (cakePHP usesTINYINT(1)
for boolean) to track acceptance.FriendRequest
record when a user sends a request.FriendRequest
records that a user has sent by searching for the ones the userhasMany
FriendRequest
records that are sent to a person by searching for allFriend belongTo User
.TRUE
when a User accepts the request.