我有一个非常简单的两个标签应用程序:
import React, { Component } from 'react';
import { AppRegistry } from 'react-native';
import { TabNavigator } from 'react-navigation';
import {
Sports,
News,
} from 'externalComponents';
const MyApp = TabNavigator({
Sports: { screen: Sports },
News: { screen: News },
});
AppRegistry.registerComponent('MyApp', () => MyApp);
Sports 和 News 组件由另一家公司提供,我无法编辑该代码。如果我将它加载到TabBarIOS
组件中,一切正常,所有选项卡都按预期工作。但是,使用react-native-navigation
and react-navigation
,只有最后一个加载的选项卡才能正常工作。
News
和组件都Sports
加载这样的JSONDownloadService
组件:
downloadService = new JSONDownloadService(this);
然后它称之为:
downloadService.getJSON(this.state.url, type)
现在,JSONDownloadService
因为它已经在其构造函数中传递了NEWS
or组件,所以它被传递了(未正确调用的部分)。看起来像这样:SPORTS
updateComponent
getJSON()
getJSON(url, type) {
//set up vars...
fetch(request, init)
.then(function (response) {
// ...some code
})
.then(function (response) {
if (response) {
try {
// supposed to call `updateComponent` in News & Sports:
callback.updateComponent(response, type);
}
catch (err) {
console.log(err);
}
}
})
.catch(function (error) {
console.error(error);
});
}
问题是,updateComponent()
只有在 tabBar 中加载的最后一个组件才会调用。如果我改变他们的位置,只有最后一个有效。除了,如果我注释掉JSONDownloadService
最后一个选项卡中的相关代码,那么第一个可以正常工作。似乎无论哪个组件最后使用它都会阻止其余组件更新。如何使用react-native-navigation
or完成这项工作react-navigation
?
提前感谢您的帮助!