由于从swift 3迁移到swift 4,我的功能出现问题。我想将视频上传到Firebase存储。代码行是here
const params = {
TableName: USERS_TABLE,
Key: {
userId: refcode
},
UpdateExpression: "add #test :value",
ExpressionAttributeNames: {
"#test": "score"
},
ExpressionAttributeValues: {
":value": 2
},
ReturnConsumedCapacity: "TOTAL",
ReturnValues: "ALL_NEW"
};
我包裹在** ....中的代码是错误行,所以我有3个错误
1。类型“ StorageMetadata”的值没有成员“ downloadURL”
2。通话中额外的参数“ completion”
3。通话中的额外参数“ completion”
有人可以帮助我解决这个问题吗