我正在我的应用程序中实现Google的即时搜索。我想在用户输入文本输入时触发HTTP请求。我遇到的唯一问题是,当用户到达名字和姓氏之间的空格时,空间不会被编码为+
,从而破坏了搜索。如何用+
替换空格,或者只是安全地对字符串进行编码?
$("#search").keypress(function(){
var query = "{% url accounts.views.instasearch %}?q=" + $('#tags').val();
var options = {};
$("#results").html(ajax_load).load(query);
});
答案 0 :(得分:468)
通过将某些字符的每个实例替换为表示字符的UTF-8编码的一个,两个,三个或四个转义序列来编码统一资源标识符(URI)组件(对于由字符组成的字符,将只有四个转义序列)两个“代理”人物。)
示例:
var encoded = encodeURIComponent(str);
答案 1 :(得分:21)
encodeURIComponent 对我来说很好。我们可以在ajax调用中给出这样的url。代码如下所示:
$.ajax({
cache: false,
type: "POST",
url: "http://atandra.mivamerchantdev.com//mm5/json.mvc?Store_Code=ATA&Function=Module&Module_Code=thub_connector&Module_Function=THUB_Request",
data: "strChannelName=" + $('#txtupdstorename').val() + "&ServiceUrl=" + encodeURIComponent($('#txtupdserviceurl').val()),
dataType: "HTML",
success: function (data) {
},
error: function (xhr, ajaxOptions, thrownError) {
}
});
答案 2 :(得分:8)
更好的方式:
encodeURIComponent 会转义除以下内容之外的所有字符:alphabetic, decimal digits, - _ . ! ~ * ' ( )
为了避免对服务器的意外请求,您应该对任何用户输入的参数调用encodeURIComponent,这些参数将作为URI的一部分传递。例如,用户可以为变量注释键入“Thyme& time = again”。不对此变量使用encodeURIComponent将再次给出comment = Thyme%20& time =。请注意,&符号和等号表示新的键和值对。因此,不是让POST注释键等于“Thyme& time = again”,而是有两个POST键,一个等于“Thyme”,另一个(时间)等于。
对于application / x-www-form-urlencoded(POST),按http://www.w3.org/TR/html401/interac...m-content-type,空格将替换为'+',因此可能希望跟随encodeURIComponent替换,并附加替换“% 20“与”+“。
如果希望更加严格遵守RFC 3986(保留!,',(,)和*),即使这些字符没有正式的URI分隔用途,也可以安全地使用以下内容:
function fixedEncodeURIComponent (str) {
return encodeURIComponent(str).replace(/[!'()]/g, escape).replace(/\*/g, "%2A");
}
答案 3 :(得分:4)
我正在使用MVC3 / EntityFramework作为后端,前端通过jquery消耗我的所有项目控制器,直接发布(使用$ .post)不需要数据编码,当你直接传递params而不是URL硬编码。 我已经测试了几个字符,我甚至发送了一个URL(这个http://www.ihackforfun.eu/index.php?title=update-on-url-crazy&more=1&c=1&tb=1&pb=1)作为参数,并且完全没有问题,即使在URL中传递所有数据时,encodeURIComponent工作得很好(硬编码)
硬编码网址,即>
var encodedName = encodeURIComponent(name);
var url = "ControllerName/ActionName/" + encodedName + "/" + keyword + "/" + description + "/" + linkUrl + "/" + includeMetrics + "/" + typeTask + "/" + project + "/" + userCreated + "/" + userModified + "/" + status + "/" + parent;; // + name + "/" + keyword + "/" + description + "/" + linkUrl + "/" + includeMetrics + "/" + typeTask + "/" + project + "/" + userCreated + "/" + userModified + "/" + status + "/" + parent;
否则不要使用encodeURIComponent,而是尝试在ajax post方法中传递params
var url = "ControllerName/ActionName/";
$.post(url,
{ name: nameVal, fkKeyword: keyword, description: descriptionVal, linkUrl: linkUrlVal, includeMetrics: includeMetricsVal, FKTypeTask: typeTask, FKProject: project, FKUserCreated: userCreated, FKUserModified: userModified, FKStatus: status, FKParent: parent },
function (data) {.......});
答案 4 :(得分:0)
尝试这个
var query = "{% url accounts.views.instasearch %}?q=" + $('#tags').val().replace(/ /g, '+');