求助json
时间:2010-09-20
来源:互联网
生成json文件的php文件:
<?php
$title = iconv("GBK","UTF-8","不顾一切丁一确二一不求有功");
$message = iconv("GBK","UTF-8","天干幵不顾一切丁一确二天王");
$liu=array(array('url'=>'../img/01.jpg','title'=>$title,'message'=>$message,'timer'=>'2010-06-18'));
$josn_data = stripslashes(json_encode($liu));
$cache_file='./json.json';
file_put_contents($cache_file, $josn_data);
?>
生成的json文件:
var jsonData = [{"url":"../img/01.jpg","title":"u4e0du987eu4e00u5207u4e01u4e00u786eu4e8cu4e00u4e0du6c42u6709u529f","message":"u5929u5e72u5e75u4e0du987eu4e00u5207u4e01u4e00u786eu4e8cu5929u738b","timer":"2010-06-18"}]
读取json中的数据:
<script type="text/javascript" src="json.json"></script>
<script language="javascript">
document.write(jsonData[0]['title']);
</script>
怎么显示出来的中文是:u4e0du987eu4e00u5207u4e01u4e00u786eu4e8cu4e00u4e0du6c42u6709u529f。
我想显示出来中文怎么办?
<?php
$title = iconv("GBK","UTF-8","不顾一切丁一确二一不求有功");
$message = iconv("GBK","UTF-8","天干幵不顾一切丁一确二天王");
$liu=array(array('url'=>'../img/01.jpg','title'=>$title,'message'=>$message,'timer'=>'2010-06-18'));
$josn_data = stripslashes(json_encode($liu));
$cache_file='./json.json';
file_put_contents($cache_file, $josn_data);
?>
生成的json文件:
var jsonData = [{"url":"../img/01.jpg","title":"u4e0du987eu4e00u5207u4e01u4e00u786eu4e8cu4e00u4e0du6c42u6709u529f","message":"u5929u5e72u5e75u4e0du987eu4e00u5207u4e01u4e00u786eu4e8cu5929u738b","timer":"2010-06-18"}]
读取json中的数据:
<script type="text/javascript" src="json.json"></script>
<script language="javascript">
document.write(jsonData[0]['title']);
</script>
怎么显示出来的中文是:u4e0du987eu4e00u5207u4e01u4e00u786eu4e8cu4e00u4e0du6c42u6709u529f。
我想显示出来中文怎么办?
作者: leibao 发布时间: 2010-09-20
<script language="javascript">
document.write(unescape(jsonData[0]['title']));
</script>
这样看看是否显示中文正确!
document.write(unescape(jsonData[0]['title']));
</script>
这样看看是否显示中文正确!
作者: fengyun520 发布时间: 2010-09-20
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28