https://github.com/bevry/query-engineを使い始めたばかりです
内部に動的データを使用してクエリを作成する方法を知りたいです。
ここにコード例があります:
var query = "Berlin";
queryObject = '{"City":{$contains: "'+query+'"}}';
queryCollection.query(queryObject);
//TypeError: Object.keys called on non-object
queryObject = {"City":{$contains: "Berlin"}} ;
queryCollectionquery.(queryObject);
//working as expected
何か案は?
編集:これをオブジェクトプロパティに拡張できますか:
query = 'Berlin',
filter = 'City',
queryObject = {filter: {$contains: query}};