为什么 Web 分析应用程序从不使用 JSONP
我正在考虑为自己构建一个类似于 Google Analytics、Getclicky 等的应用程序。
我注意到所有这些网站都使用图像信标将数据发送到服务器。
除了大小开销之外,还有什么理由不使用使用 jQuery 的 JSONP 吗?
I'm thinking of building an application for myself that is similar to Google Analytics, Getclicky, etc.
I've noticed that all of these websites use Image beacons to send data to the servers.
Aside from the size overhead, is there any reason to not use JSONP using jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您想要包含有意义的数据的响应时,JSONP 非常有用。在分析的情况下,您并不关心结果。向远程服务器发送 GET 请求的最简单、最快、最简单的方法是请求图像。如果您不关心响应是什么,那么其他任何事情都是不必要的复杂性。
JSONP is great when you want a response with meaningful data. In the case of analytics you dont care about the result. The easiest fastest and simplest way to send a GET request to a remote server is by requesting an image. And if you don't care what the response is, then anything else is needless complexity.