以下代码返回id,title和content字段。我只需要id和title。
db.laws.search({columns: ["title", "content"], term: req.params.text}, function(err,laws){
res.contentType('application/json');
res.send(JSON.stringify(laws));
});
我需要和等同于"从法律中选择ID,标题......"。我在docs中找不到任何内容。
我想避免使用for循环来过滤掉不需要的列,效率会降低。