gpt4 book ai didi

javascript - DarkSky API - 未处理的拒绝错误 - ReactJS/Axios/Node.js

转载 作者:行者123 更新时间:2023-11-29 23:22:25 24 4
gpt4 key购买 nike

想知道你是否可以帮忙,我在这个问题上遇到了困难......

我在 React 中有一个旅行应用程序,用户可以在其中找到其他在线用户(一旦找到登录用户的纬度和经度)。

定位后,在我的网络应用程序页面上 - 我使用 lng/lng 来获取 Zomato api 本地信息/餐厅。这曾经有效,但现在我在我的控制台中收到以下错误...(这曾经有效,但代码没有改变...)

我正在尝试对 DarkSky api 执行相同的操作,以获取本地天气数据。而且我的 axios 请求结构完全相同。但是,这也不起作用。

Failed to load resource: the server responded with a status of 400 ()
app.js:55642 Unhandled rejection Error: Request failed with status code
400
at createError (http://localhost:8000/app.js:9175:15)
at settle (http://localhost:8000/app.js:53028:12)
at XMLHttpRequest.handleLoad (http://localhost:8000/app.js:9048:7)
From previous event:
at Hub._this.getPlaces (http://localhost:8000/app.js:53788:26)
at commitCallbacks (http://localhost:8000/app.js:38450:15)
at commitLifeCycles (http://localhost:8000/app.js:41688:13)
at commitAllLifeCycles (http://localhost:8000/app.js:43345:9)
at HTMLUnknownElement.callCallback
(http://localhost:8000/app.js:32010:14)
at Object.invokeGuardedCallbackDev
(http://localhost:8000/app.js:32048:16)
at invokeGuardedCallback (http://localhost:8000/app.js:32097:29)
at commitRoot (http://localhost:8000/app.js:43484:9)
at completeRoot (http://localhost:8000/app.js:44381:36)
at performWorkOnRoot (http://localhost:8000/app.js:44331:11)
at performWork (http://localhost:8000/app.js:44249:9)
at performSyncWork (http://localhost:8000/app.js:44226:5)
at requestWork (http://localhost:8000/app.js:44126:7)
at scheduleWorkImpl (http://localhost:8000/app.js:44001:13)
printWarning @ app.js:55642
formatAndLogError @ app.js:55358
fireRejectionEvent @ app.js:55383
Promise._notifyUnhandledRejection @ app.js:54829
(anonymous) @ app.js:54808
setTimeout (async)
Promise._ensurePossibleRejectionHandled @ app.js:54807
Promise._reject @ app.js:57521
Promise._settlePromise @ app.js:57447
Promise._settlePromise0 @ app.js:57477
Promise._settlePromises @ app.js:57552
(anonymous) @ app.js:54272
Promise.then (async)
schedule @ app.js:58581
Async.settlePromises @ app.js:54271
Promise._reject @ app.js:57519
Promise._rejectCallback @ app.js:57337
PromiseArray._reject @ app.js:57777
PromiseArray._promiseRejected @ app.js:57797
Promise._settlePromise @ app.js:57439
Promise._settlePromise0 @ app.js:57477
Promise._settlePromises @ app.js:57552
(anonymous) @ app.js:54272
Promise.then (async)
schedule @ app.js:58581
Async.settlePromises @ app.js:54271
Promise._reject @ app.js:57519
Promise._rejectCallback @ app.js:57337
reject @ app.js:59005
geocode:1 Failed to load resource: the server responded with a status
of 404 ()

当我手动插入 lat lng 时,我可以通过 Invision 或其他工具访问数据/api 调用。所以我知道 api 正在工作。这是一个例子:

https://api.darksky.net/forecast/MY_API_KEY/50.830133,-0.137434

但是,我试图让我的 Axios 请求在我的 React JSX 中工作的方式有问题。

这是我页面的相关代码,(隐藏了 api key )。

任何帮助都会很棒 - 我不确定为什么我不能将 console.log 天气数据作为起点。

为什么我的 zomato 数据没有改变,基于用户的经纬度坐标。

"class Hub extends React.Component {

state = {
places: null,
articles: null,
user: null,
lat: null,
lng: null,
weather: null
}

setLocation = (lat, lng) => {
console.log('location set...', lat, lng);
this.setState({ lat: lat, lng: lng }, this.getPlaces);
}

getWeather = () => {
const params = {lat: this.state.lat, lng: this.state.lng};

//restaurants
Promise.props({
weather: axios({
url: 'https://api.darksky.net/forecast',
params: params,
json: true,
method: 'GET',
headers: {'user-key': 'MY_API_KEY'}
}).then(res => console.log(res.data))
.catch(err => console.log(err))
})
.then(data => {
this.setState({
weather: data.weather
});
});

}

getPlaces = () => {
const params = { count: 3, lat: 34.019864, lon: -118.490541 };
if(this.state.lat && this.state.lng) {
Object.assign(params, { lat: this.state.lat, lon: this.state.lng });
}

//restaurants
Promise.props({
restaurants: axios({
url: 'https://developers.zomato.com/api/v2.1/geocode',
params: params,
json: true,
method: 'GET',
headers: {'user-key': 'MY_API_KEY'}
}).then(res => res.data),
articles: axios({
url: 'https://developers.zomato.com/api/v2.1/collections',
params: params,
json: true,
method: 'GET',
headers: {'user-key': 'MY_API_KEY'}
}).then(res => res.data)
})
.then(data => {
this.setState({
places: data.restaurants.nearby_restaurants.slice(0, 6),
articles: data.articles.collections
});
});
}

componentDidMount() {
this.getPlaces();
this.getWeather();
}

render() {
etc etc etc
}

最佳答案

看起来 API key 和坐标应该是 part of the path .尝试:

  weather: axios({
url: `https://api.darksky.net/forecast/${MY_API_KEY}/${params.lat},${params.lng}`, // add api key to the path
json: true,
method: 'GET',
headers: {'user-key': 'MY_API_KEY'}
})

关于javascript - DarkSky API - 未处理的拒绝错误 - ReactJS/Axios/Node.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50202035/

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