我是本机反应新手,我试图访问远程 url 抛出此错误。"undefined 不是计算 ((0,_reactNative.fetch) 的函数"。不知道我做错了什么;请帮忙。我使用的是最新版本的 react native 0.40
import React, { Component } from "react";
import {
View,
Text,
Button,
fetch,
NativeModules,
NativeEventEmitter
} from "react-native";
export default class VideoScreen extends Component {
componentDidMount(){
this.video();
}
video(){
fetch('http://localhost:4200/token').then(function(res) {
console.log(res.json());
})
}
}
从
导入语句中删除fetch可以工作。
import {
View,
Text,
Button,
NativeModules,
NativeEventEmitter
} from "react-native";
我遇到了同样的问题,可以通过将此代码添加到应用程序来解决.js :
if(typeof global.self === "undefined")
{
global.self = global;
}