JSONやっぱよーわからんわいね。

jsonbufに代入されたヤツをテキストに変換するのができない

jsonbufに代入されたヤツをテキストに変換するのができない

  • タグ:
  • タグはありません
	jsonbuf="{\"name\":\"k5342(\u7ba1\u7406\u4eba)\",\"date\":\"2012-03-10 02:20:12\",\"comment\":\"\uff1e\uff1eAjax\u306f\u3042\u308c\u306d\u3002\u3082\u3061\u308d\u3093\u6295\u7a3f\u3057\u305f\u3068\u304d\u3082\u30ea\u30ed\u30fc\u30c9\u3055\u308c\u306a\u3044\u611f\u3058\u3067\u3002\r<br>\u305b\u3084\u306a\u3001Javascript\u3092\u65e9\u3081\u306b\u7fd2\u5f97\u3057\u3066Ajax\u5bfe\u5fdc\u3055\u305b\u307e\u3059\u306d\u3002\r<br>\u306a\u3089\u51e6\u7406\u306fTwitter\u7684\u306a\u611f\u3058\u3067\u3044\u3044\u3067\u3059\u304b\u306d\u3002\"}{\"name\":\"\u30cf\u30c0\u30ab\u30c7\u30d0\u30cd\u30ba\u30df\",\"date\":\"2012-03-09 15:53:14\",\"comment\":\"\u6539\u884c\u30c6\u30b9\u30c8\r<br>a\r<br>a\r<br>a\r<br>a\r<br>a\r<br>as\r<br>a\r<br>a\r<br>a\r<br>a\r<br>a\r<br>a\r<br>\"}"
	;
	jsonopen pointer,jsonbuf
	dialog pointer
	jsonnkf "Ws"
	repeat 30
		if pointer=0:break
		jsongets name, "name", pointer
		jsongets body, "comment", pointer
		jsongets date, "date", pointer
		wrt=""+wrt+"name:"+name+" body:"+body+" ("+date+")\n"
		jsonnext pointer,pointer,2
		await 0
	loop
	jsonclose
	dialog wrt