从 JavaScript 发送 HTTP 请求(并处理回复)
我对 HTTP 和 JS 都很陌生。
我想显示来自基于 IP 的网络摄像头的视频(和音频)源。它有一个基于 HTTP 的 AOP,它接受类似请求
http://<ip-address>/cgi/audio/receive.cgi?[&<argument>=<value>]
并返回 HTTP 200 或 HTTP 400 等
基本上我想使用这种接口远程控制有关相机的所有内容(音量、缩放、图像大小、每秒帧数等)等)
我如何发送 HTTPP 请求(当用户单击网页上的按钮时)并检查响应?
我可以用普通的 JS 来做吗?或者我需要使用像 JQuery 这样的东西吗?
I'm fairly new to both HTTP and JS.
I want to display the video (and audio) feed from an IP-based web cam. It has an HTTP based AOP, which accepts requests like
http://<ip-address>/cgi/audio/receive.cgi?[&<argument>=<value>]
and returns HTTP 200 or HTTP 400, etc
Basically I want to remotely control just about everything about the camera using this sort of interface (volume, zoom, image size, frame per second, etc, etc)
How do I go about sending the HTPP request (when the user clicks a button on the web page) and checking the response?
Can I do it in plain JS? Or do I need to use somethign like JQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这听起来像是可以使用
jQuery.get
。It sounds like something that could be done very easily using
jQuery.get
.