我正在使用jquery post发送textarea数据但是它正在发送带编码格式的数据,我尝试传递contentType但是在发送contentType之后,编码数据没有显示在浏览器控制台中,但是在服务器端,我得到了encoaded数据。 如何使用POST方法发送textarea文本而不编码文本。
Here是我所做的UI代码
我尝试使用postman插件将数据发送到Web服务,并且响应的结果正确,这意味着rest端点没有问题。
$("#btnSend").on("click", function () {
$.ajax({
type: 'post',
url: 'https://fiddle.jshell.net/_display',
dataType: 'json',
data: $("#txtBox").val(),
success: function (data) {
console.log(data)
}
})
});

<textarea id="txtBox">Some Area</textarea>
<button id="btnSend">Send</button>
&#13;