我有一個訂閱搜索API的函數。在地圖功能中,我想將項目映射到對象。我沒有收到錯誤,但回覆總是空的。在http中創建新對象獲取地圖
這是我的代碼:
return this.http.get(searchURL)
.map((res: Response) => res.json())
.map(json => json.items.forEach(item => {
new SearchResult(
item.id,
item.title,
item.price
);
}) || []);
什麼是||。 []在那邊? – toskv