菜鸟教程小白 发表于 2022-12-13 02:18:27

ios - 访问并通知数据更改 firebase IOS


                                            <p><p>我想通知在同一“房间”中的用户进行更改。场景:我有一个匿名设备,其 ID 和名称一起保存。我有一个具有唯一 ID 和名称的房间。我根据设备 ID 和房间 ID 建立了它们之间的链接。 </p>

<p>看起来像这样:</p>

<p> <a href="/image/hdp6N.png" rel="noreferrer noopener nofollow"><img src="/image/hdp6N.png" alt="enter image description here"/></a> </p>

<p>应通知在同一 key 下链接的设备室“表”中的每个设备。当该键下的数据发生变化时。但现在我没有得到的部分。</p>

<p>我想在设备房间键下获取每个设备的设备名称。是的,当名称更改时,我也想获得更新。我怎样才能通过授权等来做到这一点? </p>

<p>我现在有这个基本代码可以将所有这些数据写入数据库:</p>

<pre><code>var ref: DatabaseReference! = Database.database().reference()
   ref.child(&#34;devices&#34;).child(user!.uid).child(&#34;device_name&#34;).setValue(&#34;iPhone test&#34;)

let newRef = ref.child(&#34;rooms&#34;).childByAutoId()
newRef.child(&#34;name&#34;).setValue(&#34;Room test&#34;)                                 
                            ref.child(&#34;devicesrooms&#34;).child(newRef.key).child(user!.uid).setValue(true)

let ev = ref.child(&#34;devicesrooms&#34;).child(newRef.key)

ev.observeSingleEvent(of: .childAdded, with: { (DataSnapshot) in
    print(&#34;changed&#34;)
})
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您想知道名称何时更改,您需要使用 <strong>observe</strong> 而不是 <strong>observeSingleEvent</strong>。</p>

<p>我认为你需要这样的东西:</p>

<pre><code>var deviceNames = ()
var deviceHandles = ()

// Listen for added devices
ev.observe(.childAdded, with: { (snapshot) -&gt; Void in
    // Retrieve device key
    let deviceKey = snapshot.key

    // Add observer on device
    var handle: UInt = 0

    handle = ref.child(&#34;devices&#34;).child(deviceKey).observe(.value, with: { (snapshot) in
      let value = snapshot.value as? NSDictionary
      let deviceName = value?[&#34;device_name&#34;] as? String ?? &#34;&#34;

      // Update or Add deviceName and handle in your dictionary
      deviceNames = deviceName
      deviceHandles = handle
    })
})

// Listen for removed devices
ev.observe(.childRemoved, with: { (snapshot) -&gt; Void in
    let deviceKey = snapshot.key

    // Remove deviceName from your dictionary
    deviceNames = nil

    // Retrieve handle from your dictionary
    if let handle = deviceHandles {
      // Remove observer on device
      ref.child(&#34;devices&#34;).child(deviceKey).removeObserverWithHandle(handle)
    }

    // Remove handle from your dictionary
    deviceHandles = nil
})
</code></pre>

<p>这里是 <a href="https://firebase.google.com/docs/database/ios/read-and-write" rel="noreferrer noopener nofollow">Firebase Realtime Database documentation</a> .</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 访问并通知数据更改 firebase IOS,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/45246882/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/45246882/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 访问并通知数据更改 firebase IOS