// will give you posts before most recent timestamp
let beforeRef = FIRDatabase.database().referenceWithPath("posts")
.queryOrderedByChild("timestamp")
.queryEndingAtValue(mostRecentTimestamp - 1)
.queryLimitedToLast(10)
// will give you posts after most recent timestamp
let afterRef = FIRDatabase.database().referenceWithPath("posts")
.queryOrderedByChild("timestamp")
.queryStartingAtValue(mostRecentTimestamp + 1)
.queryLimitedToLast(10)
beforeRef.observeEventType(.ChildAdded, withBlock: { snap in
print(snap) // prepend the snap to your datasource
})
afterRef.observeEventType(.ChildAdded, withBlock: { snap in
print(snap) // append the snap to your datasource
})
我正在尝试动态地将第二行上的单词帐户更改为当前用户的用户名,我尝试过几件事,但似乎无法使其正常工作。任何建议都会受到欢迎。
答案 0 :(得分:0)
添加标签,然后您可以在代码后面进行更改。
asp:label id="lblUpload" runat="server" text="upload">代码背后: lblUpload.text =“动态值”
您还可以使用html输入标签。
答案 1 :(得分:0)
用
替换html按钮<asp:button id="id" runat="server" text="urText" />
然后,只要您想更改文本,请通过以下代码进行更改:
id.Text="Your desired text";