gpt4 book ai didi

angular - 如何在 Angular 4的http请求中传递url参数

转载 作者:行者123 更新时间:2023-12-02 16:27:56 25 4
gpt4 key购买 nike

如何通过传递参数进行get请求?我尝试了这个,但收到 404 错误

getOrderbyOrderNo() {

this.orderno = this.cookie_service.get('key');

let headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('orderno', this.orderno );
let params = new URLSearchParams();
params.append("someParamKey", this.orderno )

return this.http.get('http://localhost:8080/View/orders', { headers: headers, params: params })


}

输出

ERROR 
Object { _body: "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"utf-8\">\n<title>Error</title>\n</head>\n<body>\n<pre>Cannot GET /View/orders</pre>\n</body>\n</html>\n", status: 404, ok: false, statusText: "Not Found", headers: {…}, type: 2, url: "http://localhost:8080/View/orders" }

最佳答案

IMO 有两种方法可以通过 http 请求发送参数。

  1. 将其附加到 URL,如下所示 -

    return this.http.get('http://localhost:8080/View/orders/'+this.orderno, { headers: headers  })
  2. 另一种方法是,如果您使用 httpclient 那么您可以在选项中发送参数,如下所示 -

     let httpParams = new HttpParams()
    .set('orderno', this.orderno);

有关此内容的更多信息,请阅读此处

get 类型的请求中,没有请求的正文部分,因此您必须在 URL 中附加参数,即参数或查询参数。或使用选项中的第二种方式。

关于angular - 如何在 Angular 4的http请求中传递url参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50247130/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com