如果我们可以使用代码库,小程序中的主机参数是什么?
java applet 的主机参数有什么用?
是否可以欺骗使用与原始服务器不同的服务器?
我没有找到主机参数的清晰完整的解释。
what's are the uses of the host param with java applets?
can it be tricked to use a different server than the originating server?
I didn't find a clear complete explanation of the host param.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
传递给小程序的参数就像传递给应用程序的命令行参数一样:小程序可以根据需要使用它们。名为 HOST 的参数没有什么特别之处,它不会导致小程序执行任何神奇的操作。
通常,小程序可能喜欢使用 HOST 参数在状态区域或其他位置显示它正在从哪个主机执行。或者它的行为可能会根据主机的不同而有所不同......或者其他什么。
除非小程序在浏览器的沙箱中经过签名并获得许可,否则它不会与加载它的主机之外的任何其他主机进行通信。
The parameters you pass to applets are just like command line parameters to an application: The applet can make whatever use of them that it wants. There's nothing special about a parameter called HOST, and it doesn't cause the applet to do anything magical.
Typically, an applet may like to use the HOST parameter to display, in a status area or something, which host it's being executed from. Or it may behave differently depending on the host... or something.
Unless the applet is signed and given permission in the browser's sandbox, it won't talk to any other host than the one it's loaded from.