这个变量的格式是什么?
What is the format of this variable?
我正在尝试使用采用特定格式变量的 API 执行 POST 请求。
但我无法弄清楚这是什么格式?
完整的请求负载是
csrfmiddlewaretoken=XXXXXXXXX&username=Test&first_name=Test1&last_name=Test2&email=test%40gmail.com&password1=Testtest24&password2=Testtest24
我的目标是能够在 angular.
中创建具有相同格式的变量
这是 application/x-www-form-urlencoded
格式,即浏览器用于对发送到服务器的普通 HTML 表单数据进行编码的格式。
这种格式的数据通常可以通过将其附加到 GET 请求来使用,例如https://example.com?foo=bar&alice=bob 或在具有正确 Content-Type
header.
的 POST 请求的 body 中
在 Angular 中发送请求时,您通常不必处理此编码,因为 Angular 本身会在将数据发送到服务器之前对其进行正确编码。
我正在尝试使用采用特定格式变量的 API 执行 POST 请求。
但我无法弄清楚这是什么格式?
完整的请求负载是
csrfmiddlewaretoken=XXXXXXXXX&username=Test&first_name=Test1&last_name=Test2&email=test%40gmail.com&password1=Testtest24&password2=Testtest24
我的目标是能够在 angular.
中创建具有相同格式的变量这是 application/x-www-form-urlencoded
格式,即浏览器用于对发送到服务器的普通 HTML 表单数据进行编码的格式。
这种格式的数据通常可以通过将其附加到 GET 请求来使用,例如https://example.com?foo=bar&alice=bob 或在具有正确 Content-Type
header.
在 Angular 中发送请求时,您通常不必处理此编码,因为 Angular 本身会在将数据发送到服务器之前对其进行正确编码。