微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

H5 ajax递交带有file的form表单

HTML+js:

$(".class").change(function () {
        var id = $(this).attr("id");
        console.debug("id:" + id);
        var formData = new FormData();
        var name = $(this).val();
        formData.append("img",$(this)[0].files[0]);
        formData.append("id",id);
        $.ajax({
            url: "xxx/pic",type: 'POST',data: formData,// 告诉jQuery不要去处理发送的数据
            processData: false,// 告诉jQuery不要去设置Content-Type请求头
            contentType: false,beforeSend: function () {
                console.log("正在进行,请稍候");
            },success: function (responseStr) {
            },error: function (responseStr) {
                console.log("error");
            }
        });
    });

 <tr>
                              
                                <td>
                              <span class="putfile">
                                  <@shiro.hasPermission name="xxx" >
                                      <form action="xxxx/pic" enctype="multipart/form-data">
                                          <input name="${ap_index}" type="file" id="${ap.id}"
                                                 class="class"
                                                 style="height: 22px;width: 30px;">
                                      </form>
                                      <@netCommon.pageBtn url="null" type="info" title="上传图片" icon="photo"  />
                                  </@shiro.hasPermission>
                              </span>
                                </td>
                            </tr>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐