English 中文(简体)
如何更新其他客户的活动时的同步页数?
原标题:How to update asynchron pages upon event from other client?

目前,Im正在与AJAX一道ool。 现在,我创建了一个“Markdown”审查员,更新了文本领域的变化。 (我猜测你知道,从某个地方......;-)

现在,我试图指出,另一个客户是如何向事件更新一页。 因此,要说是一纸空文。 用户撰写一些文章,称为一项活动,该员额是书面的。

但是,在其他客户网页上,新员额当然还没有到位,直到从数据库中重载和更新员额清单。

现在,你如何能够做到同步工作? 因此,当某个客户做些什么时,其他客户都知道他做了什么?

我认为,这在日本宇宙航空研究开发机构是完全可以做到的,但我也不知道如何在服务器部门实施,因为需要一个网页,向其他客户通报这一事件。

I m 的想法是建立一个能够反映目前数据状况的文件或数据库输入。 每当一个客户装上该页时,他就节省了该散列。 然后,每几秒就对 has子进行检查。

一旦对数据做任何改动,就会重新计算。 如果文字证明该散射器已经改变,并且与所节约的纸面不同,则该纸面重载数据库的内容,并节省新的散列。

这甚至会奏效吗?

最佳回答

尽可能减少的污染确实是最佳解决办法。 即便是你确实使用了袖珍或一些东西...... 这基本上仍是一个活着的环节,可能不得不对自己进行投票(尽管以更有效的方式)。

10分钟内有20个回答问题,如{“最新情况”:false} 字眼甚至 be在你的申请中。 我想象有人浏览你的网站,要求20页和相关图像/文字/名称(即使涉及一些剪辑),可能很容易有数百项要求,要求所有类型的浪费的数据库查询,以显示它们实际上不关心的信息。

问题回答

你可以投票。 例如,每个客户都可能向服务器发出连续不断的美国退休人员协会要求,每30秒钟,看是否有新职位,如果是,就显示:

setInterval(function() {
    // TODO: Send an AJAX request here to the server and fetch new posts.
    // if new posts are available update the DOM
}, 30 * 1000);

另一方面,当有人决定写一个新职位时,你向服务器发出美国宇宙航空研究开发机构(而不是美国宇宙航空研究开发机构)的请求,将这一职位储存在数据库中。

另一个不太常用的方法是:Comet 执行,使用户能够从服务器上接到使用推力进行变革的通知。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签