我试图允许我网站上的用户上传带有表单的图像。
我一直在使用Formspree(https://formspree.io/)
我收到图像的名称,但电子邮件中没有图像。

我正在使用:

<label>
    Upload Photo
    <input type="file" name="uploadField" />
</label>

有没有人设法做到这一点?

最佳答案

Formspree当前不支持文件输入,但是Formsprees FAQ提供以下建议:


<!-- The best place for this one is your <HEAD> tag -->
<script>UPLOADCARE_PUBLIC_KEY = "demopublickey";</script>
<script
src="https://ucarecdn.com/libs/widget/3.x/uploadcare.full.min.js"
charset="utf-8"></script>

<!-- This is where the widget will be. Don't forget the name attribute! -->
<input type="hidden" role="uploadcare-uploader" name="my_file" />



资料来源:https://help.formspree.io/articles/6199-how-to-do-file-uploads-with-formspree

09-25 18:12