Chat App
Short-polling
componentDidMount() {
this.polling = setInterval(() => {
this.props.remote('/messages?bzq=data.messages')
})
}json.data(search: params['bzq'])
json.header do
...
end
json.messages do
json.array! @messages do |msg|
json.body msg.body
end
end
endLong-polling
Last updated