Releases: Zuoqiu-Yingyi/widget-query
Releases · Zuoqiu-Yingyi/widget-query
Query v0.1.4 release
- v0.1.3 <=> v0.1.4
- 配置文件
config.js
有变更 | There are changes to the configuration fileconfig.js
. - 使用自定义属性实现每个挂件块的自定义配置 | Use custom attributes to implement a custom configuration for each widget block.
- 使用配置文件设置块搜索结果各字段的宽度 | Use a configuration file to set the width of each field of the block search results.
- 查询结果为 0 时渲染表格头 | The table header is rendered when the query result is 0.
- 修复多个相同模板字段解析失败问题 | Fixed multiple failed parsing of the same template fields.
Query v0.1.3 release
- v0.1.2 <=> v0.1.3
- 修复默认处理方法参数错误 | Fixed default processing method parameter errors.
- 默认块搜索结果排除挂件查询组合块 | The default block search results exclude the widget query combination block.
Query v0.1.2 release
- v0.1.1 <=> v0.1.2
- 修复配置文件字段引用错误 | Fix profile field reference errors.
- 修复有序列表项与任务列表项中插入查询代码块运行时异常 | Fixed a run-time exception for inserting a query code block into a ordered list item or task list item.
Query v0.1.1 release
- v0.1.0 <=> v0.1.1
- 修复列表项中插入查询代码块运行时异常 | Fixed a run-time exception for inserting a query code block into a list item.
- 修复引述块或超级快中插入查询代码时异常 | Fixed an exception when inserting query code in Quoted Block or Super Express.
- 新增部分思源模板参数解析 | Added the parsing of partial template parameters in the Siyuan.
- 默认查询时使用自定义处理方法 | Custom processing methods are used when querying by default.
Query v0.1.0 release
- 符合正则表达式
^\s*SELECT\s+\*\s+FROM\s+blocks.*
的 SQL 语句将启用自定义渲染模式
SQL statements that conform to the regular expression^\s*SELECT\s+\*\s+FROM\s+blocks.*
will enable custom rendering mode.- 这个正则表达式在
/src/script/module/config.js
中的config.query.regs.blocks
配置
This regular expression is configured inconfig.query.regs.blocks
in/src/script/module/config.js
- 这个正则表达式在
- 自定义渲染模式 | Custom rendering modes
- 可以在
config.query.limit
中设置过长查询结果的截取方案
You can set the the interception scheme for query results that are too long inconfig.query.limit
.config.query.maxlen
: 最大长度 | Maximum lengthconfig.query.maxrow
: 最多行数 | Maximum number of rows
- 可以在
config.query.fields
中设置想要显示的字段
You can set the fields you want to display inconfig.query.fields
. - 可以在
config.query.align
中设置各字段的对齐方式
You can set the alignment of each field inconfig.query.align
. - 可以在
config.query.handler
中设置各字段的处理方法
You can set the handling method for each field inconfig.query.handler
.
- 可以在
- 普通模式 | Normal mode
- 完整显示查询结果
Displays the query results in full.
- 完整显示查询结果