lingjianghua

Results 2 comments of lingjianghua

@yuche 修改`isReactComponent = EMPTY_OBJ`这一行主要是要解决编译后,`isReactComponent`并不能在`Component.prototype`中找到的问题,我附上当前版本编译后代码吧: ``` var Component = function Component(props, context) { this._dirty = true; this._disable = true; this._pendingStates = []; // Is a React Component. // tslint:disable-next-line:max-line-length // see:...

fis-postpackager-autoload里面index.js 有一句“file.isHtmlLike && file.useCompile &&file.extras.useAutoload !== false” 改成“file.isHtmlLike && file.useCompile && file.extras &&file.extras.useAutoload !== false”,主要是找不到file.extras。这样可以跑起来。