我有以下加载到模板中的 html...
Welcome <b id="alert-username">${fullname}</b>
我在模板中有以下选择器/操作...
[:#alert-username] (replace-vars {:fullname (fullname request)})
这呈现如下......
Welcome ${fullname}
这显然不是我想要的。
但是,如果我努力做到这一点,它会起作用......
[:#alert-username] (fn [n] (assoc n :content [(fullname request)]))
产生...
Welcome Bill
所以我知道从请求中获取用户名不是问题,因为上面的代码做了它应该做的事情。
我在这里做错了什么?