問題タブ [feathers-hook]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
feathersjs - Feathers リクエストにカスタム クエリ パラメータを追加する
いくつかの結果を処理するためにフックで使用できるカスタム クエリ パラメーターを追加したいと考えています。
リクエストに $foo=bar を追加したいと思います。$foo をホワイトリストに登録でき、リクエストに表示されますが、サービスは ORM を使用しているため、データベースに $foo=bar のクエリを実行しようとします。
before フックでは、params.query から $foo を取り除くことができますが、after フックで処理できるように、$foo の値を隠しておくことができるフックのコンテキストのどこかが他にありますか?