gpt4 book ai didi

jquery - Seaside 定期更新 JQuery

转载 作者:行者123 更新时间:2023-12-03 23:04:36 26 4
gpt4 key购买 nike

我正在使用 Seaside(Squeak 4.2 中的 2.8),通常更新如下:

html div 
onClick: ((html jQuery: '#asdf') load html: [:h|h text: 'qwer'])
; with: 'asdf'.

但这一次,我必须定期更新 div

我在另一个项目中使用过 PT 的 periodicalEvaluator,但是在这个项目中我不能,我必须坚持使用 JQ。

我尝试在我能想到的所有组合中使用 JQInstance 的 delay:millis:

onClick: (((html jQuery id: 'chattertext') delay: 1000; yourself) load html: [:h| self renderTextOn: h])
; onClick: (((html jQuery id: 'chattertext') delay: 1000) load html: [:h| self renderTextOn: h])
; onClick: (((html jQuery id: 'chattertext') delay: 1000; load) html: [:h| self renderTextOn: h])
and others

出于某种原因,更新是即时的,而不是在我需要的1000毫秒之后

最佳答案

看一下 JQuery 功能测试套件附带的示例:

JQRepeatingFunctionalTest>>#renderContentOn: html
html paragraph
script: (html jQuery this load
html: [ :r | self renderTimeOn: r ];
interval: 1 seconds);
with: [ self renderTimeOn: html ]

示例正在运行here .

关于jquery - Seaside 定期更新 JQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15601771/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com