标签: json react-native
return fetch(url) .then(function(response){ console.log(response) return response.json(); })
我有一个url变量。当我尝试在第一次返回之前打印console.log时,它可以工作。但目前没有显示任何东西。这是否意味着此函数.then(function(response)未被调用?那是为什么?
.then(function(response)