我已经在Liferay论坛上发布了我的问题this is the link,以防你想在那里发布答案。
我的ext-plugin部分工作在开发环境(CentOS),但在我的笔记本电脑(Windows 7)中没有问题,我的意思是部分因为项目我修改了两个类,我看到的变化反映了一个但不是另一个。
这些类属于不同的包:
someFunction = () => {
this.comp.watever() //whatever function you have inside Component that you want to invoke
}
<TouchableHighlight onPress={this.someFunction.bind(this)}>
<Component ref={(comp) => this.comp = comp} />
</TouchableHighlight>
其他相关信息:
我比较了来自应用程序服务器的文件,但我没有发现明显的差异。
这可能是平台问题吗?你建议我尝试一下吗?
谢谢。