Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法限制某些活动仅限房间成员使用?我不需要限制到一个特定的房间,但需要确保客户在活动可供他们使用之前加入了一个房间。
不,这不可用,但您可以使用该rooms()功能轻松获取客户所在的房间列表。所以你可以做这样的事情:
rooms()
@socketio.on('foo') def my_foo_event(data): if 'required_room' not in rooms(): return # or return an error event, etc. # handle the event here