标签: javascript json node.js mongodb
我正在尝试使用mongo db的查询参数,我将字符串发送为
"{"location.city":"Florida"},{"category":"sports"}"
我需要将此作为条件传递,因此我尝试删除""使用以下代码。
let filter = JSON.parse(myString);
但是它会在第27位的JSON中引发错误意外令牌
预期格式:
{"location.city":"Florida"},{"category":"sports"}