0
我想從訪問mysql數據庫的perl腳本輸出JSON。如何在Perl中循環json結果
我該如何循環查看返回並使用JSON模塊將其轉換爲JSON?
當我做這一切我得到的是1回
while($query_handle->fetch()) {
$jsonStructure->{event};
$jsonStructure->{event}->{evid} = $evid;
$jsonStructure->{event}->{component} = $component;
$jsonStructure->{event}->{firstTime} = $firstTime;
$jsonStructure->{event}->{lastTime} = $lastTime;
$jsonStructure->{event}->{count} = $count;
$jsonStructure->{event}->{summary} = $summary;
$jsonStructure->{event}->{severity} = $severity;
}
基本上我有很多的活動,不知道怎麼說事件[0] ...
謝謝
感謝hobbs,這些都是非常好的例子。 – shaneburgess 2010-11-23 16:44:30