如何在 html 上发出 iframe 请求?
我需要您的专家帮助解决这个问题
,因为http请求可以在网页、应用程序等上发出...
- iframe(很好的例子:facebook小部件)
- 服务器端对远程服务器的请求(使用:java,python,php)
- 图像嵌入,视频嵌入 (html)
- API 请求(与 ss 请求相同)
- ajax 请求(在同一主机上)
- 等等
1.) 这些类型的请求之间的主要区别是什么?
2.) 它们是否都使用相同数量的(带宽等..),例如,如果我使用 file_get_contents("http://somesite/somefile.htm")
(php) 与
html 版本,我是否要求同样的事情,或者一个与另一个相比是否有更多的“权重”其他..
3.) 如果是这种情况,是什么导致了差异?
问候,
雅芳
I need your expert help with this question
since http requests can be made on webpages, apps, etc with...
- iframes (good example: facebook widgets)
- server side requests to remote servers (with: java, python, php)
- image embeds, video embeds (html)
- api requests (same as ss request)
- ajax requests (on same host)
- and more
1.) What is the main difference between these types of requests?
2.) Do they all use the same amount of (bandwidth etc..), for example if I use file_get_contents("http://somesite/somefile.htm")
(php) versus
the html version <iframe src="http://somesite/somefile.htm">
, am I requesting the same thing or is there more 'weight' on one versus the other..
3.) What causes the differences, if that's the case?
Regards,
Avon
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 file_get_contents 和 iframe 调用文件名的问题的简单答案是,返回的内容是相同的。但是,您的其余问题实际上取决于不同实现的作用。通常,您会发现
然而,AJAX 和 API 调用通常是最小的。
The simple answer to your question of calling a filename using file_get_contents and iframe, the content returned is identical. However, the rest of your questions really depends on what the different implementations do. Usually you will find that
AJAX and API calls are usually the smallest however.