如何使用 put 方法上传文件并将其他表单变量发布到一个表单中?

发布于 2024-12-14 07:21:00 字数 96 浏览 3 评论 0原文

如果我对所有内容使用 post 方法,只需单击一次提交,我就可以上传文件和其他变量。我想尝试使用 put 方法,并且还想以一种形式和一次提交单击来发送带有文件的 post 变量。

If I use post method for all with one submit click I can upload files and other variables. I want to try using put method and also want to send post variables with the file in one form and one submit click.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

西瓜 2024-12-21 07:21:00

是的,这是表单的正常操作方法。文件上传表单没有什么特别之处,除了必须指定 enctype 之外。您可以在同一表单中包含其他字段,当按下“提交”按钮时,它们都会一起发送。

PHP 中唯一的服务器端区别是文件上传数据位于 $_FILES 超全局中。其他字段将像往常一样位于 $_POST 中。

Yes, that's the normal operating method for forms. There's nothing special about a file upload form, except having to specify the enctype. You can have other fields in the same form and they'll all be sent together when the Submit button is pressed.

The only server-side difference in PHP is that file upload data is in the $_FILES superglobal. Other fields will be in $_POST as usual.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文