在我的Reactjs应用程序FixedDataTable
中,只要Dev Tools关闭,Chrome中的基本设置就相当快。
否则,它会非常缓慢。
有趣的是,无论Dev Tools是否开放,demo page都能正常运行。
我是否缺少任何配置技巧以使组件快速运行?
答案 0 :(得分:1)
显然问题出在rowGetter
上,ImmutableJS
使用.get(rowIndex).toJS()
从new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{user-id}/photos",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
中提取一行。当Chrome Dev Tools打开时,它恰好很慢。