-1

重複の可能性:
.get json 文字列を取得して、配列に変換しますか?

以下を使用してphpから文字列を取得しています。文字列を配列にする方法を知りたいです。

Jクエリ

$.get("get.php", function(data){
    alert(data);
    //alert($.parseJSON(data));
}, "json");

コメントアウトされたセクションは効果がないように見えるので、何が間違っているのか本当にわかりません。誰かアドバイスをお願いします。

PHP

<?php

$username="root";
$password="root";
$database="testing";

mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");

$name= $_GET['name'];

$query="SELECT * FROM tableone ";
$result=mysql_query($query);

$num=mysql_numrows($result);

mysql_close();

$array = array();

$i=0;
while ($i < $num) {

    $first=mysql_result($result,$i,"firstname");
    $last=mysql_result($result,$i,"lastname");
    $date=mysql_result($result,$i,"date");
    $ID=mysql_result($result,$i,"id");

    $array[$i] = $first;

    $i++;
}

echo json_encode($array);

?>

出力:

["James","Lydia","John"]

4

1 に答える 1

2
$.getJSON("get.php", function(data) {
    // data is already an array => you can loop to get individual elements
    // for example
    $.each(data, function(index, element) {
        alert(element);
    });
});

Content-Typeまた、PHP ファイルで適切な応答ヘッダー topを設定していることを確認してくださいapplication/json

于 2012-04-13T16:02:09.177 に答える