$ giảm phù hợp hơn với trường hợp sử dụng của bạn:
Mã giả
value = url.split("_2000x")[0]
for (item: url.split("_2000x")[1:])
value += "_850x" + item
db.collection.aggregate([
{
$match: {
imageUrl: {
$regex: "_2000x"
},
brand: "Goat The Label"
}
},
{
$addFields: {
imageUrl: {
$reduce: {
input: {
$slice: [
{
$split: [
"$imageUrl",
"_2000x"
]
},
1,
{
$size: {
$split: [
"$imageUrl",
"_2000x"
]
}
}
]
},
initialValue: {
$arrayElemAt: [
{
$split: [
"$imageUrl",
"_2000x"
]
},
0
]
},
in: {
$concat: [
"$$value",
"_850x",
"$$this"
]
}
}
}
}
}
])
CHỈNH SỬA: Để thực thi qua Bash shell:
Windows:
tạo tệp temp.js bằng:
db.collection.aggregate(...).forEach(...)
tạo tệp temp.bat bằng:
@echo off
path/to/mongo.exe --uri put_here_mongodb+srv temp.js
Bây giờ hãy chạy:temp.bat
Unix:
tạo tệp temp.js bằng:
db.collection.aggregate(...).forEach(...)
tạo tệp temp.bat bằng:
#!/bin/bash
path/to/mongo --uri put_here_mongodb+srv temp.js
Cấp quyền thực thi:chmod u+x temp.sh
Bây giờ hãy chạy:./temp.sh