从 URL 获取 React

编程入门 行业动态 更新时间:2024-10-19 10:25:09
本文介绍了从 URL 获取 React-Native JSON的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我希望我能找到一些帮助解决这个问题.

I hope I could find some help to the issue.

我正在使用 React Native 并尝试从名为 Feiertage-API (feiertage-api.de/),基本上返回(应该返回)德国的官方假期.

I'm using React Native and try to get some data from an API called Feiertage-API (feiertage-api.de/), that basically returns (should return) the official holidays in Germany.

尝试在 react native 中使用 fetch,返回:

Trying to use fetch in react native, returns:

Response { "_bodyBlob": Blob { "_data": Object { "blobId": "49C4AD4B-4648-44DB-AED7-7654EB78EF7A", "name": "api", "offset": 0, "size": 487, "type": "application/json", }, }, "_bodyInit": Blob { "_data": Object { "blobId": "49C4AD4B-4648-44DB-AED7-7654EB78EF7A", "name": "api", "offset": 0, "size": 487, "type": "application/json", }, }, "headers": Headers { "map": Object { "access-control-allow-origin": Array [ "*", ], "content-type": Array [ "application/json", ], "date": Array [ "Tue, 31 Jul 2018 07:17:51 GMT", ], "server": Array [ "nginx", ], "x-powered-by": Array [ "PHP/7.0.31, PleskLin, PleskLin", ], }, }, "ok": true, "status": 200, "statusText": undefined, "type": "default", "url": "feiertage-api.de/api/?jahr=2019&nur_land=hb", }

我的 fetch 调用如下所示:

My fetch call looks as follows:

fetch('feiertage-api.de/api/?jahr=2019&nur_land=hb') .then(response => console.log(response) ) .catch(error => console.log(error));

GET-参数为:- jahr=2019(对于年份,我认为这很明显)- nur_land=hb(以简写形式指定什么状态)

GET-Parameters are: - jahr=2019 (for year, I think that's obvious) - nur_land=hb (specifying what state by short form)

可以通过添加 get-parameter 'callback=mycallbackname' 来获取 JSONP

The possibility is given to get JSONP by adding the get-parameter 'callback=mycallbackname'

如果尝试显示数据:console.log(response.json())

If trying to show the data with: console.log(response.json())

结果是:

Promise { "_40": 0, "_55": null, "_65": 0, "_72": null, }

我期望看到的正是此处显示的数据 -> feiertage-api.de/api/?jahr=2019&nur_land=hb

What I'm expecting to see is exactly the data which is shown here -> feiertage-api.de/api/?jahr=2019&nur_land=hb

想知道如何从 Response{....} 中提取数据.

Would like to know how to extract the data out of the Response{....}.

推荐答案

您需要对该响应调用 .json() 方法.

You need to call .json() method on that response.

fetch('feiertage-api.de/api/?jahr=2019&nur_land=hb') .then(response => response.json() ) .then(data => console.log(data) ) .catch(error => console.log(error));

更多推荐

从 URL 获取 React

本文发布于:2023-11-24 22:43:54,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1627179.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:URL   React

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!