我发现这个例子使用Node API将过滤器应用于相关模型,但我想知道是否可以使用REST实现相同的结果?
节点示例:
Post.find({
include: {
relation: 'owner', // include the owner object
scope: { // further filter the owner object
fields: ['username', 'email'], // only show two fields
include: { // include orders for the owner
relation: 'orders',
scope: {
where: {orderId: 5} // only select order with id 5
}
}
}
}
}, function() { ... });
我可以使用的最接近的REST网址版本是:
...?filter[include][owners][orders]
是否可以通过基于相关模型过滤器限制结果来创建与上述节点示例相同的REST网址?在这种情况下订单?
答案 0 :(得分:0)
我有这个功能,所以当我调用Hdates /即将推出的REST API时,它会显示日期大于今天的事件,并且还包括场地......希望它有所帮助。
print_r