1、如果是通过URL传递:----需要编码两次

var searchText = this.searchText();

searchText = encodeURI(searchText);

searchText = encodeURI(searchText);

$.ajax({

type: 'GET',

url: $ctx + this.pageUrl + pageIndex + "&searchText=" + searchText,

data: '',

contentType: 'text/json,charset=utf-8',

dataType: 'json',

success: function(data) {

}

})

},

后台通过:

String queryCon = request.getParameter("searchText");

if(queryCon != null && queryCon != ""){

queryCon=URLDecoder.decode(queryCon,"utf-8");

}

反编译一下就可以获取到传递的中文~~

2、  直接通过ajax数据传递:只需编译一次~

var searchText = this.searchText();

searchText = encodeURI(searchText);

$.ajax({

type: 'GET',

url: $ctx + this.pageUrl + pageIndex ,

data: {search:searchText },

contentType: 'text/json,charset=utf-8',

dataType: 'json',

success: function(data) {

}

})

},

后台直接获取到传递的值,需要解码一次:

String queryCon = search;

if(queryCon != null && queryCon != ""){

queryCon=URLDecoder.decode(queryCon,"utf-8");

}

GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e 4 个月前
8c391e04 6 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐