我的React APP中的Firefox和Chrome上的Javascript fetch()API行为不同

时间:2019-05-09 14:50:16

标签: javascript reactjs google-chrome firefox fetch

在我的react App中,根据浏览器的不同,fetch()API在localhost:3000中的行为有所不同。在Chrome浏览器中,fetch()API为我提供了移动网站的html代码。在Firefox浏览器中,fetch()API为我提供了完整的桌面站点。我希望能够在chrome浏览器上获得完整的网站。有人知道为什么会这样吗?

我使用的获取代码如下

const REAL_URL = 
'https://www.zerochan.net/Re%3AZero+Kara+Hajimeru+Isekai+Seikatsu?s=fav'
       fetch(REAL_URL)
           .then(res => res.text())
           .then(body => {
               console.log(body)})

当应用程序不在本地主机和某个站点上托管时,此问题是否还会持续?

0 个答案:

没有答案