我只想打印国家名称和人口。
我已经按升序对它们进行了分类,并且只想按此顺序打印出它们的名称和人口。当我尝试这样做时,我得到“未定义”。
当我打印函数时,我得到的是整个列表,但是是在数组中。
const DataStore = require('nedb');
const db = new DataStore({filename: __dirname + '/countriesDB', autoload: true});
db.ensureIndex({ fieldName: 'country', unique: true }, function (err) {});
db.find({country: /^M/}).sort({ population: 1 }).exec(function (err, docs) {
if (err) {
console.log("something is wrong");
} else {
console.log("Name " + db.country + ", Population: " + db.population);
console.log(docs);
}
});
我用当前代码得到了这个
Name undefined, Population: undefined
[ { country: 'Micronesia, Federated States of',
abbreviation: 'FM',
_id: 'yISdEnQoml9dJEpL',
city: 'Palikir',
dish: null,
location: 'Micronesia',
population: null },
{ country: 'Montserrat',
abbreviation: 'MS',
_id: '0GAqvRD9FbZRVvE3',
city: 'Plymouth',
dish: null,
location: 'Caribbean',
population: 11000,
area: 102 },
我想看到类似的东西
名称:密克罗尼西亚联邦,人口:空
名称:蒙特塞拉特,人口:11000
答案 0 :(得分:0)
我知道了。
for(var i = 0; i < 22; i+=1)
{
console.log("Name " + docs[i].country + ", Population: " + docs[i].population);
}