aliyun / aliyun-oss-react-native

MIT License
148 stars 101 forks source link

bug: asyncListObjects 接口在RNAliyunOSS+OBJECT.m 中存在错误 #60

Open HELLC-- opened 5 years ago

HELLC-- commented 5 years ago

`if([options objectForKey:@"delimiter"]) { getBucket.delimiter = [options objectForKey:@"delimiter"]; }

if([options objectForKey:@"marker"]) {
    getBucket.marker = [options objectForKey:@"marker"];
}

if([options objectForKey:@"prefix"]) {
    getBucket.prefix = [options objectForKey:@"prefix"];
}

if([options objectForKey:@"maxkeys"]) {
    getBucket.maxKeys = [[options objectForKey:@"maxkeys"] intValue];
}`

这一块是修改后的代码,望更新!