我有一个对象
const arr = [{ x: 1, y: 2 }];
我想在模板文字中使用它,因为我的用例但出现错误,假设我们使用模板文字记录这个数组
console.log(`${arr}`);
我们会得到这个错误
array literal: This type can not be coerced to string
我如何在模板文字中使用数组的任何替代解决方案?
这是我的用例我有一个查询
query {
processes(
page: 1,
itemsPerPage: 100,
filterBy: ${where}, // This is where I am getting this error, I want to pass an array here
) {
id
businessKey
name
processDefinition {
name
}
createDate
endDate
tasks {
id
}
}
}
但它被转换为[Object Object]
. 我知道有一些限制,所以如果你可以请提出一个更好的解决方案?
这是我的 where 对象
const where = [{ name: 'endDate', op: 'is null' }];