我在收到"创建文档"时收到错误,说id是一个数字。在我的逻辑应用程序的DocumentDb步骤中。我如何toString
插入步骤中的id
号码?
"actions": {
"Create_or_update_document": {
"inputs": {
"body": {
"body": "@triggerBody()",
"createdAt": "@triggerBody()?['created_at']",
"description": "@triggerBody()?['description_text']",
"dueBy": "@triggerBody()?['due_by']",
"priority": "@triggerBody()?['priority']",
"requesterId": "@triggerBody()?['requester_id']",
"source": "@triggerBody()?['source']",
"status": "@triggerBody()?['status']",
"id": "@triggerBody()?['id']",
"type": "@triggerBody()?['type']",
"updatedAt": "@triggerBody()?['updated_at']"
}