我的提交在我的桌面上完美運行,無需使用 iframe 重定向。通過移動設備(chrome 和 safari)訪問我的網(wǎng)站時,頁面重定向到端點并停止。我想要一種移動友好的方式來停止重定向。<iframe width="0" height="0" border="0" name="dummyframe" id="dummyframe"></iframe><form id="upload-form" action="http://10.121.86.136:5000/upload" method="POST" enctype="multipart/form-data" target="dummyframe"><input @click="send_img()" name="submit" type="submit" value="Upload Image">send_img() { var url_1 = "http://10.121.86.136:5000/send_images" axios.post(url_1, ...) ...}The results on mobile is a blank screen at the endpoint ip:5000/send_images
如何在不重定向和不使用 iframe 的情況下提交表單?
慕田峪9158850
2021-09-17 12:46:36