问题描述:前端request.js中 防止表单重复提交方法 当提交data大于5M时
报错信息:
errQuotaExceededError: Failed to execute ‘setItem’ on ‘Storage’: Setting the value of ‘sessionObj’ exceeded the quota.
chunk-91e737d8.fd1463a9.js:1 DOMException: Failed to execute ‘setItem’ on ‘Storage’: Setting the value of ‘sessionObj’ exceeded the quota.
解决办法:
1.最直接的办法====>干掉表单重复提交验证
2.大数据内容防止重复提交在后端处理,不在前端处理
3.前端单独配置请求repeatSubmit属性

return request({
    url: '/xxxx',
    headers: {
      repeatSubmit: false
    },
    method: 'post',
    data: data
  })
Logo

快速构建 Web 应用程序

更多推荐