gpt4 book ai didi

reactjs - 外部(npm 打包)组件未调用 React setState 回调

转载 作者:行者123 更新时间:2023-12-03 13:41:38 24 4
gpt4 key购买 nike

我使用 setState 和回调来确保状态更新后运行。

...
this.setState({enabled : true},this.getData);
}
getData () {
const self = this;
fetch(this.props.url,{
method : 'post',
body : this.state
}).then(function (response) {
return response.json();
}).then(function (result) {
self.update();
});
}
...

setState 正在被调用。 this.state.enabled 确实更改为 true。但是,this.getData 没有被调用。

我发现有趣的一件事是,这种情况发生在我通过 npm 包使用的组件上。在我自己的代码中,带有回调的 setState 按设计工作。

上述外部组件也是我封装的。我正在使用 webpack 来构建它。我的 webpack 配置可能有问题吗?

这里是:

const Webpack = require('webpack');
const path = require('path');

module.exports = {
entry: {
index : './src/index.js'
},
output: {
path: path.join(__dirname,'dist'),
filename: '[name].js',
library : 'TextField',
libraryTarget: 'umd'
},
externals : [
{
'react' : {
root : 'React',
commonjs2 : 'react',
commonjs : 'react',
amd : 'react'
}
}
],
module: {
loaders: [
{ test: /\.(js?)$/, exclude: /node_modules/, loader: require.resolve('babel-loader'), query: {cacheDirectory: true, presets: ['es2015', 'react', 'stage-2']} }
]
},
devtool : 'eval'
};

编辑:

所以现在我很确定当我从包中使用我的组件时与从我的源代码中使用它时会发生一些可疑的事情。

当我从属于我的源代码一部分的组件调用 setState 时,这就是所谓的:

ReactComponent.prototype.setState = function (partialState, callback) {
!(typeof partialState === 'object'
|| typeof partialState === 'function'
|| partialState == null) ?
process.env.NODE_ENV !== 'production' ?
invariant(false, 'setState(...): takes an object of state variables to update or a function which returns an object of state variables.')
: _prodInvariant('85')
: void 0;
this.updater.enqueueSetState(this, partialState);
if (callback) {
this.updater.enqueueCallback(this, callback, 'setState');
}
};

以上内容来自名为ReactBaseClasses.js的文件

当我从打包为 npm 包的组件调用 setState 时,这就是所谓的:

Component.prototype.setState = function (partialState, callback) {
!(typeof partialState === 'object'
|| typeof partialState === 'function'
|| partialState == null) ?
invariant(false, 'setState(...): takes an object of state variables to update or a function which returns an object of state variables.')
: void 0;
this.updater.enqueueSetState(this, partialState, callback, 'setState');
};

以上内容来自名为 react.development.js 的文件。请注意,回调被传递给 enqueueSetState。有趣的是,当我闯入 enqueueSetState 时,该函数对回调不执行任何操作:

enqueueSetState: function (publicInstance, partialState) {
if (process.env.NODE_ENV !== 'production') {
ReactInstrumentation.debugTool.onSetState();
process.env.NODE_ENV !== 'production' ? warning(partialState != null, 'setState(...): You passed an undefined or null state object; ' + 'instead, use forceUpdate().') : void 0;
}

var internalInstance = getInternalInstanceReadyForUpdate(publicInstance, 'setState');

if (!internalInstance) {
return;
}

var queue = internalInstance._pendingStateQueue ||
(internalInstance._pendingStateQueue = []);
queue.push(partialState);

enqueueUpdate(internalInstance);
},

最佳答案

这可能是 React 的一个错误。显然,结合 enqueueSetState 和 enqueueCallback 功能是一个重大错误修复,但这些在早期版本的 React 中是单独运行的调用。

https://github.com/facebook/react/issues/8577

导入 npm 模块时,有时会引入不同版本的 React 作为依赖项,从而导致 setState 和回调产生此类不一致的错误。

https://github.com/facebook/react/issues/10320

关于reactjs - 外部(npm 打包)组件未调用 React setState 回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48134802/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com