Heim >Backend-Entwicklung >PHP-Tutorial >javascript - 在 Form 的 enctype 为 "multipart/form-data" 时,如何接收普通的input val内容

javascript - 在 Form 的 enctype 为 "multipart/form-data" 时,如何接收普通的input val内容

WBOY
WBOYOriginal
2016-06-06 20:18:221271Durchsuche

<code><form enctype="multipart/form-data" method="POST" target="coverfile_update" action="xxx">
    <input type="file" name="file" id="coverfile">
    <input type="hidden" name="unlink" class="unlink">
    <input type="submit" id="update_cover_btn">
</form></code>

通过这种方式,我在对应的PHP文件中可使用“$_FILES['file']”来接收选择的文件,但是这个unlink的val内容我应该如何获取呢?


对不起,我犯蠢了,我竟然用$_files['unlink']获取内容- -应该是$_post['unlink']。

请问sf如何删除问题,太蠢了。。

回复内容:

<code><form enctype="multipart/form-data" method="POST" target="coverfile_update" action="xxx">
    <input type="file" name="file" id="coverfile">
    <input type="hidden" name="unlink" class="unlink">
    <input type="submit" id="update_cover_btn">
</form></code>

通过这种方式,我在对应的PHP文件中可使用“$_FILES['file']”来接收选择的文件,但是这个unlink的val内容我应该如何获取呢?


对不起,我犯蠢了,我竟然用$_files['unlink']获取内容- -应该是$_post['unlink']。

请问sf如何删除问题,太蠢了。。

你没用过$_POST吗

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn