我希望從各種來源獲取內容,使用不同的API調用,並將它們全部整理到具有相同格式的對象或數組中。我被javascript數組和對象卡住了,我發現的例子都沒有做我想做的事情。這是我想要存儲的格式。這是僞編碼的我想要什麼例子來實現Javascript數組或對象
var content = new Object();
getTweets();
getSoundCloud();
display();
function getTweets() {
//first result
content.type = "tweet
content.text = "the text of the tweet"
content.image = "the image from the tweet"
return content;
}
function getSoundCloud() {
//second result
content.type = "soundcloud
content.text = "the name of the song"
content.image = "the image of the song"
return content;
}
function display() {
//for each content
{
$("#container").append(content.text);
}
}
由一個函數調用生成的第一個結果,並通過不同的功能調用生成的第二個結果。
我想要這些函數將所有的內容一起添加到同一個格式對象中。一旦對象被填充,我希望用不同的函數迭代它並顯示在屏幕上。
如何製作此物件?我試過了,但數據總是相同的,即用相同的值覆蓋。在PHP中,這將是可能的關聯數組或類似
我想爲每段內容我有一個對象的東西,並且可以循環通過它
content[0].type = "tweet"
content[1].type = "coundcloud"
舉例任何建議將是巨大的。
非常感謝