我正在编写一个RCP应用程序,其中我想根据命令参数设置启用状态。
db.users.find({
name: {'$regex': query, '$options': 'i'}
}).then((users) => {
res.json(users);
})
// var query, is just the pattern that i send from my web
好吧……尽管我已经找到了如何在execute()方法中访问命令参数,但是我很难在setEnabled()方法中接收该值。
有人知道在那里获取该值的方法吗?
亲切问候