SpadeGod / react-native-aliyun-oss

基于阿里云SDK的react-native上传组件
MIT License
33 stars 20 forks source link

上传到一半的到时候出现 Error: not respond this method #10

Open xyy7260 opened 6 years ago

xyy7260 commented 6 years ago

33b611f0-8be6-45b2-bfe4-426248d96c6a

版本 "react-native-aliyun-oss-cp": "^1.0.6", "react-native": "0.52.0",

xyy7260 commented 6 years ago

执行上传函数 AliyunOSS.uploadObjectAsync 的catch 里面出现, 在这之前我修改过你的代码 NativeAliyunOSS.initWithKey(conf.AccessKey, conf.SecretKey, conf.SecretToken, EndPoint);
如果我这样上传就会出现 : 618d5f60ad22c1c04cda83f46a9262a5 只能接受第三个参数,随后修改了:NativeAliyunOSS.initWithKey(conf.AccessKey, conf.SecretKey, EndPoint); 这样就行了没有报错,但是 上传的时候出现上面那个错误了。

xyy7260 commented 6 years ago

@kala888 @SpadeGod 老大们

mengerpiao commented 6 years ago

他这个代码里边的initWithKey方法写错了,应该用箭头函数 initWithKey:(AccessKey,SecretKey,SecretToken,EndPoint) => { NativeAliyunOSS.initWithKey(AccessKey, SecretKey, SecretToken, EndPoint); },