我正在尝试将主体添加到HTTP GET请求中。但无法添加
我尝试了RequestOptions,但是没有用。
对于上述代码,POST请求有效,但GET不起作用
getlist(name : string) : Observable<Object[]> {
var body = {
"listname" : name
}
return this.http.post<any>("http:/regsd.com/api/lists/",body)
}
答案 0 :(得分:1)
您可以在GET请求中传递查询参数。
=IF(TEXT(IMPORTXML("https://cartolafcmix.com/",
"//div[@class='content']/span/@data-timer")-NOW(), "[hh]")="22", "Alert 22 hours",
TEXT(IMPORTXML("https://cartolafcmix.com/",
"//div[@class='content']/span/@data-timer")-NOW(), "[hh]:mm:ss"))
只能在POST和其他动词(如HTTP中的PUT)中设置主体。