我是javascript新手,并在下面遇到了此代码。
我将变量id
和rules
设置如下,一个带有字符串,另一个带有object。
Popmaker.schema = new SimpleSchema({
id: { type: String },
rules: { type: Object }
});
我们从前端将id
作为参数传递给后端以过滤数据。
jsfile具有一组特定的id
规则。
const Popmakers = [
[
"098745612", // id
jsfile // file where we have rules
]];
const Populate = () => {
Popmakers.forEach(popmaker => {
const [
id,
rules
] = popmaker;
Popmaker.insert({
id,
rules
});
});
};
export default Populate;
rules是一个带有单个js文件的对象,现在我有一个唯一的ID来检查不同的js文件。 我们如何通过在JavaScript中进行迭代来更改rules对象以使用unqid1和js1处理字典。 我认为将其创建为字典可以使其工作如下。让我知道是否还有其他方法。
const Popmakers = [
[
"098745612", // id
{unqid1 : js1, unqid2 : js2, unqid3 : js3} // file where we have rules
]];