我创建了一个接受locationRequests的feathers service
。作为documentation状态,每次调用服务方法的create
端点时,都会发出event
。
我可以像这样订阅这个活动。
locationRequestService.on('created',(locationRequest) => {
console.log(locationRequest);
});
如上所述,每次调用locationRequest
方法时,我都可以记录新创建的create
对象。
接下来,我应该能够使用event filters
locationRequestService.filter(function(data, connection){
if(connection.userId != data.userId) {
return false;
}
return true;
});
来限制此事件的流程。
IDictionary
但问题是这个方法永远不会被调用。
我确信我遗漏了一些明显的东西。请帮帮我。