gpt4 book ai didi

javascript - JQgrid:俄罗斯数据显示为垃圾/无效符号

转载 作者:行者123 更新时间:2023-11-28 08:12:22 27 4
gpt4 key购买 nike

我有一个 jqgrid,可以用英语/法语/俄语上传数据。当我上传俄语字符时,它显示为一些无效符号。像???????之类的东西? �?我已将jsp页面的编码更改为<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

jq 配置中有什么具体需要更改的吗?请帮忙。以下是我的 Jquery 实现

jQuery('#studentLst')
.jqGrid(
{
url : endpoint,
datatype : 'json',
rownumbers : true,
height : 250,
colNames : [ 'StudentID', 'Name', 'Marks','Description' ],
colModel : [ {
name : 'sId',
index : 'sId',
hidden : true
}, {
name : 'name',
index : 'name',

}, {
name : 'marks',
index : 'marks',
width : 200

},{
name : 'description',
index : 'description',
width : 190,
sortable : false
}],
multiselect : false,
rowNum : 10,
rowList : [ 10, 20, 40, 60, 80, 100 ],
viewrecords : true,
autowidth : true,
caption : 'Student List',
onSelectRow : function(ids) {
//Load sub grids
},

gridComplete : function() {
//Implementation
},
loadComplete : function(response) {

},
onPaging : function(pgButton) {
$("#studentLst").setGridParam({
datatype : 'json'
});
},
pager : "#studentLstPg"
});
jQuery('#studentLst').navGrid('#studentLstPg', {
search : false,
addfunc : function() {
//add student
},
addtitle : 'Add Student',
editfunc : function() {
//update student info implementation
},
edittitle : 'Edit Student',
delfunc : function() {
// Show confirmation box and delete the student

},
deltitle : "Delete Student"
});
var grid = jQuery("#studentLst");
};

最佳答案

动态文件编码

如果数据是从动态 json 或 xml 加载的,则在返回数据之前,您应该在该文件中包含一个 header ,在其中指示字符集。在 jsp 中它将是:

<%@ page language="java" contentType="application/json; charset=UTF-8"
pageEncoding="UTF-8"%>

看这里:

Set Content-Type to application/json in jsp file

在 PHP 中,它是:

header('Content-Type: text/html; charset=utf-8');

静态文件编码

如果它是静态文件,请验证您是否使用正确的编码保存它(如果您看不到文件的编码,请尝试使用 Notepad++ /sublime text,此类应用程序可以选择使用以下格式保存文件不同的编码)。

enter image description here

关于javascript - JQgrid:俄罗斯数据显示为垃圾/无效符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24033102/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com