まず、これを調査するために時間を割いていただきありがとうございます。
日付をUNIXタイムスタンプとしてデータベースに保存し、次を使用してすべての情報を取得したとき。
while($row = mysql_fetch_assoc($result)) {
$posts[] = $row;
}
/* return the posts in the JSON format */
return json_encode($posts);
日付は、次を使用して取得しようとすると、UNIXタイムスタンプとしてのみ使用できます。
var postHandler = function(postsJSON) {
$.each(postsJSON,function(i,post) {
alert(post.date);
}
}
JSONで送信する前に読み取り可能な日付に変換する方法はありますか?それともその後?
どうもありがとうございました。