gpt4 book ai didi

javascript - jquery ajax POST 中的字符串参数

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

API 的 Curl 表明这是正确的格式:

curl -X POST --header "Content-Type: application/json" --header "Accept: application/json" -d "2018062703,2018062703" "http://XX.XX.XX/api/my_url"

这个 API 需要这样的参数:

enter image description here

我正在尝试使用以下代码发送它们:

var data = "2018062703,2018062703";
$.ajax({
type: 'POST',
data: data,
url: 'my/api/url',
dataType: 'json',
success: etc...

但我收到 404 not found。在 Chrome 的控制台中我得到了这个:

我做错了什么?在 API 的网络中,当我将参数作为字符串“2018062703,2018062703”时,它可以工作。

enter image description here

最佳答案

AJAX 调用中的 data 参数无效。它应该看起来像这样:

data: { filtro: data }

现在,您正在尝试使用名为的参数调用 API2018062703,2018062703 没有任何值(value)。

关于javascript - jquery ajax POST 中的字符串参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53673957/

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