- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个react-redux应用程序,在chrome中运行良好,但在firefox中它显示空白屏幕。
对于网络选项卡中的相同请求,Firefox 给出的状态代码为 304,而 Chrome 中的状态代码为 200。
由于我正在使用 redux 存储,因此我使用了以下代码来创建 redux 存储。
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
const store = createStore(rootReducer,composeEnhancers(applyMiddleware(thunk)));
如果我使用下面的代码来创建 composeEnhancer,那么它的值将是“未定义”并且代码在 firefox 中失败。但这在 chrome 中也可以正常工作。
const composeEnhancers = process.env.NODE_ENV === 'development'? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ :null || compose;
火狐错误:
Download the React DevTools for a better development experience
Warning: Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in the componentWillUnmount method.
最佳答案
This warning(s) usually shows up when this.setState() is called in a component even though the component got already unmounted.
卸载可能会在不同情况下发生:
When not rendering the component anymore, it can still happen that this.setState() is called if you have done asynchronous business logic in your component and updated the local state of the component afterward.
以下情况是最常见的原因:
class News extends Component {
_isMounted = false;
constructor(props) {
super(props);
this.state = {
news: [],
};
}
componentDidMount() {
this._isMounted = true;
axios
.get('https://hn.algolia.com/api/v1/search?query=react')
.then(result => {
if (this._isMounted) {
this.setState({
news: result.data.hits,
});
}
});
}
componentWillUnmount() {
this._isMounted = false;
}
render() {
...
}
}
尝试实现此方法。
P.S:不同的浏览器对 .js 和 .css 函数的行为有所不同。尝试使用更多跨浏览器功能。
关于reactjs - 我的 React 应用程序在 Chrome 中运行良好,但在 Firefox 中运行不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56766224/
我是一名优秀的程序员,十分优秀!