gpt4 book ai didi

javascript - 将curl转换为fetch

转载 作者:行者123 更新时间:2023-11-28 04:48:19 29 4
gpt4 key购买 nike

我正在查看 api 上的流入文档 ( https://docs.influxdata.com/influxdb/v1.2/guides/querying_data/ ),我可以像这样运行 curl :

curl -G 'http://10.111.11.11:9050/query?db=sdp_metrics' --data-urlencode "q=select distinct(host) from jmx where time > now() - 180m"

我正在尝试将该结构转换为reactjs中的fetch,但似乎无法让它工作。在 react 中,我有这个:

return fetch('http://10.111.11.11:9050/query?db=sdp_metrics&q=' + 'select distinct(host) from jmx where time > now() - 180m'
).then(infltest => { does stuff })

浏览器返回 200,但我没有收到任何数据。

最佳答案

尝试:

'http://10.111.11.11:9050/query?db=sdp_metrics&q=' 
+ encodeURIComponent('select distinct(host) from jmx where time > now() - 180m')

关于javascript - 将curl转换为fetch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43165352/

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