Closed. This question is off-topic。它目前不接受答案。
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
去年关门了。
我在swift工作,我不断地得到错误“两个uid之间的连续语句必须用“;”分隔”
    let uid = Auth.auth().currentUser?.uid
    let title = postTextField.text
    let content = contentTextField.text

    let postObject = {
        "uid": uid,
        "title": title,
        "content": content
    }
    Database.database().reference().child("posts").childByAutoId().setValue(postObject)

    print("Posted to Firebase")

最佳答案

在声明和初始化词典时不要使用大括号。
使用方括号。

let postObject = [
      "uid": uid,
      "title": title,
      "content": content
    ]

关于swift - 连续语句必须在Swift词典中用“;”分隔。,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51144520/

10-15 17:37