jsonquerylang / jsonquerylang/jsonquery-python
Custom functions not found in nested conditions
未關閉
還沒有人認領這個 Issue。
- 主要語言
- Python
- 星號
- 55
- 分支
- 3
- PR 合併指標
- 30 天內沒有已合併 PR
描述
The following code, derived from example4_custom_functions.py errors, since the parser can't find the custom function.
def times(value):
return lambda array: list(map(lambda item: item * value, array))
query = "true and times([1, 2, 3])"
options: JsonQueryOptions = {"functions": {"times": times}}
print(jsonquery(data, query, options))
Peeking at the code, it would seem that the custom arguments passed on the higher lever evaluation are not passed to recursive evaluations, and thus the function is not found.
貢獻指南
這個儲存庫沒有索引到貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
從 example4_custom_functions.py 開始,使用巢狀條件 true and times([1, 2, 3]) 重現失敗。追蹤自訂函式如何傳遞至遞迴評估中。找到提供的 times 函式且查詢成功評估後,即表示完成。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- backend
- Issue 類型
- 缺陷
- 難度
- 3/5
- 預估耗時
- 1-2 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 52/100