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.
在一个简单的聊天示例中,在客户端使用APE服务器和 JavaScript 来推送/轮询信息,是否可以允许一个用户上传文件(例如图像)并让其他用户看到上传的图像,所有实时?
谢谢。
Comet 应用程序通常用于基于文本的消息传递。您可以对图像进行编码并通过网络发送该数据,但最佳实践很可能是:
如果 3. 是一个网络应用程序,那么您可以动态创建一个新图像并src在其上设置属性,例如<img src="path_to_new_image" />.
src
<img src="path_to_new_image" />