我尝试过支付网关集成。门方式给出的代码有一些错误
-(void)viewDidLoad{
[super viewDidLoad];
......
RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation moduleName: @"ListingsView" launchOptions:nil];
[self.view addSubview:rootView];
}
错误是
org.apache.commons无法解析为类型
答案 0 :(得分:2)
您的Classpath中是否有Apache Commons Codec?
如果您使用的是maven,请将其与此代码段一起包含在内:
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>
或者只是将.jar from here放入类路径中。
答案 1 :(得分:0)
此错误可能会导致无法导入:
import org.apache.commons.*;
或者之前没有声明您在此处使用的任何变量。