-
Notifications
You must be signed in to change notification settings - Fork 4
FAQs
Stanley edited this page Aug 23, 2022
·
1 revision
-
Q: 搜索功能的搜索依据是什么?
A: 在每个事项中的日期、事项、金额、备注中全部匹配,即日期、事项、金额、备注中需有至少一项中包含关键字,后续会支持具体设置。功能实现代码(
src/api.py
,44-45行):def query(data, key): return [record for record in data if any(key in x for x in record)]
-
Q: 为什么点击了添加并正确输入数据,确定后软件表格内却不显示新事项?
A: 很可能因为您在搜索框中输入了关键字,但添加的事项不符合筛选条件,因此不会在表格内显示。