admin管理员组文章数量:1344503
In a small asp webclient I have the following Ajax-call.
$.ajax({
type: "GET",
url: "Search.aspx?action=GetDocumentInfoByChronicleId&" + querystring
})
.success(function (msg) {
$("#documentcontent").html(msg);
})
The querystring
works for default characters but appears to be non-working when using special characters (see example below)
objectId=09028139800c59e3&Db=DIV_Firm <== Works
objectId=090281>>773c5983&Db=DIV_Firm <== Non Working
Based on this (and many more posts on SO i opted to change my ajax-calls as follows (EncodeUriComponent
). But none appear to be working (even with the original querystring).
Could someone point out to me what i'm exactly doing wrong?
$.ajax({
type: "GET",
url: "Search.aspx?action=GetDocumentInfoByChronicleId&" + encodeURIComponent(querystring)
})
.success(function (msg) {
$("#documentcontent").html(msg);
})
Note: EncodeUri
appears to be working though. But i'd prefer to use EncodeUriComponent
In a small asp webclient I have the following Ajax-call.
$.ajax({
type: "GET",
url: "Search.aspx?action=GetDocumentInfoByChronicleId&" + querystring
})
.success(function (msg) {
$("#documentcontent").html(msg);
})
The querystring
works for default characters but appears to be non-working when using special characters (see example below)
objectId=09028139800c59e3&Db=DIV_Firm <== Works
objectId=090281>>773c5983&Db=DIV_Firm <== Non Working
Based on this (and many more posts on SO i opted to change my ajax-calls as follows (EncodeUriComponent
). But none appear to be working (even with the original querystring).
Could someone point out to me what i'm exactly doing wrong?
$.ajax({
type: "GET",
url: "Search.aspx?action=GetDocumentInfoByChronicleId&" + encodeURIComponent(querystring)
})
.success(function (msg) {
$("#documentcontent").html(msg);
})
Note: EncodeUri
appears to be working though. But i'd prefer to use EncodeUriComponent
- Where are you getting the querystrings from? There's a built in way to pass data in $.ajax, no need for querystrings. – adeneo Commented May 9, 2014 at 7:40
- Querystring are being built by myself. I need to send data to server based on the userinput. What do you mean with "There's a built in way to pass data in $.ajax?" Do you mean using ´{data: ... }? – User999999 Commented May 9, 2014 at 7:41
1 Answer
Reset to default 9Wouldn't it be a lot easier if there was some way to pass data when doing ajax calls, oh wait, there is, using the data
option
$.ajax({
type : "GET",
url : "Search.aspx",
data : {
action : 'GetDocumentInfoByChronicleId',
objectId : '09028139800c59e3',
Db : 'DIV_Firm'
}
});
jQuery will create the querystring for you and escape it appropriately
As a sidenote, encodeURI
is exactly what you should be using to encode a querystring containing ?
, &
etc. as encodeUriComponent
will escape those characters as well, making the querystring invalid, but the method posted above is much simpler as you don't have to worry about encoding at all.
本文标签: javascriptJQueryAjax encodeUriComponent not working (EncodeUri does)Stack Overflow
版权声明:本文标题:javascript - JQuery - Ajax: encodeUriComponent not working (EncodeUri does) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743797656a2540727.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论