在我的NodeJS应用程序中,我试图从具有特定条件的Mongo数据库中检索一些数据。这是我使用的查询:
export type Props<
T extends keyof JSX.IntrinsicElements
> = JSX.IntrinsicElements[T] & {
as?: keyof JSX.IntrinsicElements
}
export const MyComponent = <T extends keyof JSX.IntrinsicElements>({
as: Component = 'div',
}: Props<T>) => {
// Stuff
return <Component />
}
// Usage
const Anchor = () => <MyComponent<'a'> href='foo' as='a' id='bar' />
当我查看结果时,我看到查询返回了整个数据集,但是,如果我尝试直接在数据库中运行同一查询(使用Robo 3T),则得到的结果仅包含相关的条目。 那么该查询出了什么问题?
注意:我的应用程序中未使用Mongoose。