restify node.js を使用して REST API をコーディングしています。
今、私はこのようにやっています:
"http://test.com/products/query/keyword"
Routing = server.get('products/query/:keyword', myCallBack);
そして、次のようなパラメータを取得しますreq.pramams.keyword
次のようなパラメーターを取得したい:
"http://test.com/products/?query=keyword"
Routing ?
前もって感謝します。