我有更新DOM的代码。 new-recipe!
调用API来获取新的食谱字符串。 update-recipe-state
接下来在屏幕中更新此状态。最后,我们打电话给update-transition-buttons
。
(defn- add-listener-to-recipe-button! []
"Listens to go button, creates a new recipe and displays it"
(create-click-event-listener! (dommy/sel1 :#button-start)
#(go (new-recipe!)
(<! (timeout 2000))
(update-recipe-state!)
(<! (timeout 2000))
(update-transition-buttons! "onboarding"))))
;; define your app data so that it doesn't get over-written on reload
(defonce world
(add-listener-to-recipe-button!))
update-transition-buttons
步骤之间有一些延迟(使用超时代码here)如下所示:
(defn- update-transition-buttons! [recipe-name]
"Updates the buttons with the transition names"
(go
;; Split response in list of actions by splitting on the comma
(let [response (<! (http/get (get-recipe-transitions-url recipe-name)))
transition-names (clojure.string/split (:body response) ",")]
(go (update-buttons! transition-names)
(<! (timeout 2000))
(js/console.log transition-names)
(set-button-event-handlers! transition-names)))))
因此它将响应拆分为字符串。 updates-buttons
通过添加一些按钮来更改页面上的状态(这是可见的)。再次出现超时,然后我想将事件处理程序添加到按钮。这是它出错的地方。
创建事件侦听器(也包含console.log
)的例程如下所示:
(defn- listen-to-transition-button! [name]
"Creates click event listener on button (button HTML ID should be name)"
(do (js/console.log (str "Listening to " name))
(let [name-without-spaces (clojure.string/replace name " " "")
button (dommy/sel1 (keyword (str "#" name-without-spaces)))
action #(do (perform-action! name)
(update-recipe-state!))]
(create-click-event-listener! button action))))
(defn- set-button-event-handlers! [names]
"Creates click event listeners on the buttons (button ID should be name)"
(map listen-to-transition-button! names))
您再次看到传递的每个元素都应发生console.log
消息。我在Firefox控制台中获得的输出是:
[第一次服务] [下一个服务被要求]
[显示步骤列表]:[“Step1”,“Step2”,“Step3”]
我的期望是:
[第一次服务] [下一个服务被要求]
[显示步骤列表]:[“Step1”,“Step2”,“Step3”] 听取第1步 听第2步 聆听Step3
因此,由于某种原因,不会添加事件处理程序(依赖于之前步骤中生成的HTML),并且不会显示console.log
消息。
当我从REPL调用相同的代码时,我确实看到输出,即:
REPL =&GT; (set-button-event-handlers![“Step1”,“Step2”,“Step3”])
(#object [Object [object Object]] #object [Object [object Object]] #object [Object [object Object]])
控制台输出是:
聆听Step1
听第2步 听Step3
为什么可以从REPL调用set-button-event-handlers!
,而不是update-transition-buttons
之后的update-buttons
方法?
答案 0 :(得分:6)
看起来问题就在这里:
(map listen-to-transition-button! names)
set-button-event-handlers!
中的
它创建了一个懒惰的seq,并且元素不会被实现,直到它们在代码中的某处使用(从未发生过),但是当你在repl中调用它时,它完全被实现为显示输出中的所有元素。尝试将此行更改为:
(doall (map listen-to-transition-button! names))