上传表单可以将文件上传到另一台服务器吗?
是否可以在服务器 A 上有一个 HTML 表单并将其上传内容到服务器 B?
这能实现吗?我正在尝试使用 iframe 以及在其他服务器上启动的表单,但我需要从服务器 A 传递到表单的信息。我必须使用 javascript 吗?
感谢您的帮助!
Is it possible to have a HTML form on server A and have it upload content to server B?
Can this be achieved? I am trying to use an iframe with the form starting on the other server, but I need information passed to the form from server A. Would I have to use javascript?
Thank you for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然,只要您通过 POST 发送它并且您的远程服务器接受该 POST 响应。不需要javascript,只需将表单操作设置到远程服务器即可。
As long as you're sending it via POST and your remote server is accepting that POST response, sure. No need for javascript, just set the form action to the remote server.
可以,但服务器 b 必须接受上传。它必须在服务器端完成。使用 php 或同等语言。
这是一个很棒的教程
http://www.tizag.com/phpT/fileupload.php
You can but the server b has to accept the upload. It has to be done on the server side. Using php or equivalent.
Here is a great tutorial
http://www.tizag.com/phpT/fileupload.php