1

Ajax 正在发送到 PHP

Ĺ asija-kabina

代替

Šasija-kabina

虽然我确实在任何地方声明了字符集。在 html 文件的头部我有这个:

<meta charset="ISO-8859-2">

在 PHP 文件中,我得到了这个:

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

这是我的 ajax 函数,其中“str”是一个 json 数组:

function updateField(str, id, prevvalue, value, vehicletype){
    $.ajax({
        type: "get",
        url: "inc/ajax/form_rest.php",
        data: { q:str, prevvalue:prevvalue, value:value, vehicletype:vehicletype },
        contentType: "application/json;charset=latin2",
        success: function(html) {
                    $('#'+id).html(html);
                }
        })
        .done(function(){
            $("#"+id).removeAttr("disabled");
            if($("#"+id+" option").length == 2){
                $("#"+id).val($("#"+id+" option:last-child").val()).change();
            }
            if($("#"+id+" option:last-child").val() == ""){
                $("#"+id).attr("disabled", "disabled");
            }
        });
}

尽管如此,我得到了错误的输出。谁能帮我这个?

4

2 回答 2

1

我认为您需要为字符集使用正确的 ISO 名称,例如更改:

contentType: "application/json;charset=latin2",

contentType: "application/json;charset=ISO-8859-2",

我还认为,使用 UTF-8 以外的任何东西都会在您的项目后期给您带来更多麻烦,因为 PHP 中的 json_encode 实际上只支持 UTF-8。

于 2013-06-28T02:12:36.413 回答
0

您为此使用外部 javascript 文件吗?我认为您还需要设置包含 javascript 文件的字符集

<script src="myscripts.js" charset="latin2"></script>

但我真的建议您在服务器端和客户端脚本上都使用 UTF-8

于 2013-06-28T02:10:51.827 回答