我想将存储在变量let data = {
/// create the structure here not as you do
'search':{
'text':"blabla",
...
},
....
}
this.http.post(url, data);
中的所有值附加到空列表中。我尝试了maxi
和c.append(maxi)
,但它无效。
c.extend(maxi)
打印输出(maxi):
我想将所有这些值存储在单个列表中。