1 Star 0 Fork 0

dpwgc/kv2doc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
parse.go 457 Bytes
一键复制 编辑 原始数据 按行查看 历史
dpwgc 提交于 2025-02-14 16:51 +08:00 . query优化
package kv2doc
import (
"github.com/expr-lang/expr"
)
type Parser struct {
}
func NewParser() *Parser {
return &Parser{}
}
func (c *Parser) Match(code string, doc Doc) (bool, error) {
program, err := expr.Compile(code, expr.Env(doc))
if err != nil {
// fmt.Println(err)
return false, err
}
output, err := expr.Run(program, doc)
if err != nil {
// fmt.Println(err)
return false, err
}
// fmt.Println(output)
return output.(bool), err
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/dpwgc/kv2doc.git
git@gitee.com:dpwgc/kv2doc.git
dpwgc
kv2doc
kv2doc
master

搜索帮助