将应用程序从fluxible v0.4.x升级到v1.0.x并且一切都很顺利,除了现在正在发生此错误。 context.createElement is not a function
相关的代码行似乎是:
// ...
var app = new Fluxible({
component: Application
});
// ...
var context = app.createContext();
// ...
React.renderToString(context.createElement());
关于在哪里寻找或修复什么的想法?
答案 0 :(得分:3)
createElementWithContext(context, props);
已取代context.createElement(props)
。这是为了将Fluxible核心与React分离。