我已經瀏覽了關於這個主題的JavaScript問題,這個問題是關於使用TypeScript的Angular2的具體問題。合併兩個對象數組與Angular 2和TypeScript?
我想要做的是將json對象連接到一個數組。
我的代碼看起來像這樣,
public results: [];
public getResults(){
this._service.get_search_results(this._slug, this._next).subscribe(
data => {
this.results.concat(data.results);
this._next = data.next;
},
err => {
console.log(err);
}
);
}
我如何可以連接到data.results
與this.results
打字稿和角?
this._slug
和this._next
設置在課堂上。
謝謝。
不幸的是,這不適用於Uint8arrays :( –