如何在ajax url中发送很长的数据?

问题描述 投票:0回答:1

我正在一起使用php和ajax从用户访问数据并将其插入到database.problem,它可以与小字符串一起正常工作,但是当我尝试在10000个字符上发送数据时,浏览器提示错误,提示url to long..我可以进行更改在PHP中,但我希望它是动态的,所以我只能使用这种方式..请帮助我。

function submitQuestion(){
    var x=document.forms['Ask']['title'].value;
    var y=document.forms['Ask']['description'].value;
    if(x.length ==  0 || y.length == 0){
        alert('Insufficient Data');
    }else{

        startLoading();
        console.log(y);
        var xhttp = new XMLHttpRequest();
        xhttp.onreadystatechange = function(){
            if(this.readyState == 4 && this.status==200){
                console.log(this.responseText);
                if(this.responseText == "All Done"){
                    clearInterval(startLoadingClearInt);
                    alert("data Inserted");
                    // window.location.replace('../profile/userprofile.php');
                }
            }
        };

        //here x is very inn some cases and produces an error
        xhttp.open("POST","./submitQuestion.php?title="+x+"&description="+y, true);
        xhttp.send();
    }
}

我正在一起使用php和ajax从用户访问数据并将其插入到数据库中。问题是它可以与小字符串一起正常工作,但是当我尝试在10000个字符上发送数据时,浏览器会提示一个...

javascript html ajax web url
1个回答
0
投票

您无法通过url发送长数据(如messerbill所说)。您必须将其发送到正文中,例如:

© www.soinside.com 2019 - 2024. All rights reserved.