如何查找网卡ID
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何查找网卡ID相关的知识,希望对你有一定的参考价值。
如何查找网卡ID
右击“网上邻居”,选属性,然后再右击“本地连接”,选属性,点击“Internet 协议 TCP/IP“后点击“属性”,即可看到。 参考技术A 运行 cmd 然后 ipconfig /all可得到网卡的ip 设置 mac地址等信息
如何在 id 数组中查找相同的集合?
【中文标题】如何在 id 数组中查找相同的集合?【英文标题】:How to lookup into same collection in an array of id? 【发布时间】:2021-04-28 08:27:55 【问题描述】:我有一个用户架构
var userSchema = new mongoose.Schema(
username:
type: String,
required: true,
,
follows : [
type : Schema.Types.ObjectId,
ref : "User"
],
followers : [
type : Schema.Types.ObjectId,
ref : "User"
],
);
我有一个userId
,然后我想从该用户 ID 中获取所有关注者。我是 mongodb 的新手。
所以一个用户有一个followers[]字段,它会包含所有follower的userid。所以我想获取关注者的所有字段。
【问题讨论】:
【参考方案1】:虽然关注者指的是用户对象 id,所以最好在 userSchema 中使用 find 方法。 假设您将 Id 作为参数传递,然后只需 find 方法。
const fields = await userSchema.find( follower: req.params.id );
【讨论】:
其实我想找到folwers的详细信息follower的名字,username他的id。如果他是我的追随者。我只有我的身份证。我想获取每个关注者的所有详细信息 好吧。你有你的追随者吗?如果是,那么只需映射该追随者对象并通过映射访问每个项目。这只是 javascript 的逻辑思维。【参考方案2】:$match
你的用户ID条件
$lookup
加入,在from
中传递相同的集合名称
User.aggregate([
$match: _id: 1 ,
$lookup:
from: "user", // update to your actual collection name
localField: "followers",
foreignField: "_id",
as: "followers"
])
Playground
【讨论】:
以上是关于如何查找网卡ID的主要内容,如果未能解决你的问题,请参考以下文章
如何让Intel Pro100网卡在wireshark中支持VLAN-ID抓取