以前,我已经能够在Firebase CLI中附加POST请求的正文,但是文档中缺少有关如何再次执行该请求的示例。
示例:
我尝试:
const siteReviews = await Review.countDocuments({
'clientId': clientObj.ClientBrandID,
'siteSource': 'SomeSite',
'reviewDate':{
$gt:"2018-12-24T18:04:47.806Z",
$lt:"2019-04-03T17:04:47.806Z"
}
})
但是收到以下错误:
myFunction.post({body: {...}})
我想访问通过TypeError [ERR_INVALID_ARG_TYPE]: The first argument must be one of type string or Buffer. Received type object
传递的数据。有什么想法吗?