如何使用 Clojurescript 协议扩展 Google Closure 元素。我试过这个,但它似乎不起作用:
(ns my-stuff.main
(:require
[goog.dom :as dom))
(defprotocol ds
(-set-text [this text]))
(extend-type js/HTMLDivElement
ds
(-set-text
[this text] (dom/setTextContent this text)))
(set-text (.getElementById js/document "a") "howdy")
:我认为我必须做一些基本的错误,因为我的 HTML 页面上 ID 为“a”的元素永远不会更新。