兼容茅台播放
This commit is contained in:
@@ -48,6 +48,27 @@ db.video.find(
|
||||
{ "v_play_url.douban": { $exists: true } }
|
||||
).limit(10)
|
||||
|
||||
db.video.find(
|
||||
{ "v_play_url.maotai": { $exists: true } }
|
||||
).limit(10)
|
||||
|
||||
db.video.find(
|
||||
{
|
||||
"v_play_url.douban": { $exists: true },
|
||||
"v_play_url.maotai": { $exists: true }
|
||||
}
|
||||
).limit(10)
|
||||
|
||||
db.video.find({
|
||||
"v_play_url.maotai": { $exists: true },
|
||||
$expr: {
|
||||
$gt: [
|
||||
{ $size: { $objectToArray: "$v_play_url" } },
|
||||
1
|
||||
]
|
||||
}
|
||||
})
|
||||
|
||||
// 删除某个资源线路的数据
|
||||
db.video.updateMany(
|
||||
{},
|
||||
|
||||
Reference in New Issue
Block a user