作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试向 Korma SQL 查询动态添加 WHERE 条件
(-> the-query
(where {:archived false})
(add-where-conditions params)
(limit 200)
(select))
(where query (or (between :freq [100 200]) (between :freq [300 400]) ... ))
.辅助函数 make-conds 列出了 where 函数的参数列表,例如:
(or (between :freq [100 200]) ...
eval
的那个作品。为什么?有一个更好的方法吗?
(defn add-where-conditions [query params]
(eval (list 'where query (make-conds params))))
(defmacro add-where-conditions-2 [query params]
(list 'where query (make-conds params))) ; broken
(defmacro add-where-conditions-3 [query params]
`(where ~query ~(make-conds params))) ; broken
最佳答案
宏不起作用的原因是在这两种情况下 params
的值参数是符号 params
.这就是为什么在 add-where-conditions-2
和 add-where-conditions-3
当宏调用时 (make-conds params)
,函数接收到的值不是你想的列表而是符号params
,显示以下行中的错误:
IllegalArgumentException Don't know how to create ISeq from: clojure.lang.Symbol clojure.lang.RT.seqFrom (RT.java:505)
params
的值。参数,所以
eval
接收列表
(where {:your-query nil} (or (between :freq [100 200]) ,,,))
,这就是
where
宏期望并知道如何处理。
where
宏解析表达式以搜索它用于构建表达式的一些谓词。
where*
,功能替代品,没有那种功能,所以我想不出
eval
的替代品吃蛋糕,也吃蛋糕。
关于sql - 为什么 eval 在 Korma 中构建 WHERE 条件时宏不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17135794/
我是一名优秀的程序员,十分优秀!