用Json来实现PHP与JavaScript间数据交换

1,003次阅读
没有评论

JSON(JavaScript 对象表示法)是一种轻量级的数据交换格式。

简而论之,无论是 xml 还是 json 都是为了方便在客户端与服务器端交互数据的中转站,特别是用于对象类型数据,是最常见的数组。

下面将分别将片段从 php 传送给 javascript,以及将分段从 javascript 传送给 php 示例说明,示例比较简单,明白概念即可。不管从 php 传送给 javascript,还是 javascript 传送给 php,json 在传送之前都会将对象非正式化即一维化为字符串。

PHP 向 JavaScript 传值

PHP 文件 json.php

<?php
    $arr = array(
        'name' => '希亚',
        'nick' => 'Gonn',
        'contact' => array(
            'email' => 'gonnsai@163.com',
            'website' => 'http://www.nowamagic.net',
        )
    );
    $json_string = json_encode($arr);
    echo "getProfile($json_string)";
?>

光执行这个文件,其结果如下:

getProfile({"name":"\u5e0c\u4e9a","nick":"Gonn",
 "contact":{"email":"gonnsai@163.com","website":"http:\/\/www.nowamagic.net"}})

json.php 是通过 json_encode 函数将串行二进制化,然后发送,相反有个 json_decode 函数。

那么在 JavaScript 中如何调用呢?很简单,定义一个变量获取 PHP 传来的 Json,该 Json 具有对象的特性,我们可以用 array.name 这种方式来获取该 Json 的属性。

<script type="text/javascript">
function getProfile(str) { 
    var arr = str; 
    document.getElementById('name').innerHTML = arr.name; 
    document.getElementById('nick').innerHTML = arr.nick; 
    document.getElementById('email').innerHTML = arr.contact.email;
    document.getElementById('website').innerHTML = arr.contact.website;
} 
</script>
<body>
<div id="name"></div>
<div id="nick"></div>
<div id="email"></div>
<div id="website"></div>
</body>
<script type="text/javascript" src="json.php"></script>
运行结果如下:希亚
Gonn
gonnsai@163.com
http://www.nowamagic.net

JavaScript 向 PHP 传值

json_encode.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>json:From javascript To php</title>
<script src="json2.js" type="text/javascript"></script>
<script type="text/javascript">
function JSON_test(o)
{
    var user = {name:document.getElementById('txt_name').value,
        email:document.getElementById('txt_email').value,
        password:document.getElementById('txt_password').value
    }
    var json_string = JSON.stringify(user);
    document.getElementById('txt_json').value=json_string;
    alert("点击确定后将提交表单");
    o.submit();}
</script>
</head>
<body>
    <form id="form1" name="form1" method="post" action="json_encode.php" onsubmit="JSON_test(this);return flase;">
        <label for="txt_name"> 姓名 </label>
        <p><input type="text" name="txt_name" id="txt_name" /></p>
        <label for="txt_email"> 邮箱 </label>
        <p><input type="text" name="txt_email" id="txt_email" /></p>
        <p><label for="txt_password"> 密码 </label></p>
        <p><input type="text" name="txt_password" id="txt_password" /></p>
        <p><input type="text" name="txt_json" id="txt_json" />
            <label for="button"></label>
            <input type="submit" name="button" id="button" value="JSON" >
        </p>
    </form>
</body>
</html>

这里的 JavaScript 集成化需要一个插件:http://www.json.org/json2.js,通过 JSON.stringify(str)将对象插入化然后传送给 php。

注:另外一个 http://www.json.org/json.js,对应的是 toJSONString 方法。

var last=obj.toJSONString(); // 针对 json.js
var last=JSON.stringify(obj); // 针对 json2.js
json_encode.php
<?php

    header('Content-Type: text/html; charset=utf-8');
    $json_string = $_POST["txt_json"];
    //echo $json_string;
    if(ini_get("magic_quotes_gpc")=="1")
    {$json_string=stripslashes($json_string);
    }
    $user = json_decode($json_string);
    echo var_dump($user);
    echo '<br /><br /><br /><br />';
    echo $user->name.'<br />';
    echo $user->email.'<br />';
    echo $user->password.'<br />';
?>


这里就需要用到 json_decode()这个函数,然后调用其中数据用 $ obj-> 属性即可。

正文完
 0
飞翔的mouse
版权声明:本站原创文章,由 飞翔的mouse 于2020-02-03发表,共计3101字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。