マイマップ機能
function(doc, meta) {
emit([doc.city, doc.region], doc.id);
}
私の質問
?keys=[["New York", "Northeast"]]
これは次のように出力されます:
{
city: 'New York',
region: Northeast
}
北東部からそれらの都市のみを取得する同じマップ関数を使用したい場合、それは機能しません。キーの 1 つだけを一致させる方法はありますか? お気に入り...
?keys=[[null, "Northeast"]]
と出力
[{
city: 'New York',
region: 'Northeast'
},
{
city: 'Boston',
region: 'Northeast'
}]