2

使用 AJAX 查询服务器 apache (php5),我看到了浏览器的差异解释。

我必须将集合重写为路径 /ajax/get_category/1 而没有 .txt .json .php 等。

什么是所有浏览器的通用解决方案:IE7、8、9、Safari、Chrome、FF 等?

寻找 json 和数据的解决方案。


你能举例说明现成的数据 $('#content').html(data).

header("内容类型:文本/纯文本;字符集:UTF-8"); ?

4

1 回答 1

2

这将强制浏览器不缓存被请求的数据,它会告诉浏览器正在发送 json 数据,

    header('Content-Type: application/json');
    header("Cache-Control: no-cache, must-revalidate");
    // HTTP/1.1
    header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
    // Date in the past
于 2012-05-24T08:17:45.443 回答