我有一个 webhook,它会自动从 Redmine 中的客户支持软件 Freshdesk 打开工单。来自支持软件的描述包含纯 HTML。当将此传递给 Redmine API 以创建问题时,描述是使用 HTML 创建的,很难阅读。
请求中的示例:
{
"issue":
{ "project_id": 62
, "priority_id": 6
, "tracker_id": 12
, "status_id": 6
, "assigned_to_id": 23
, "subject": "Freshdesk - {{ticket.subject}}"
, "description": "Product - {{ticket.portal_name}}\n\nDescription:\n<div>this is a div</div>\n\nLast Public Comment\n{{ticket.latest_public_comment}}\n\nLast Private Comment\n{{ticket.latest_private_comment}}\n\nAgent Email - {{ticket.agent.email}}\nFreshdesk URL - {{ticket.url}}"
}
}
在 Redmine 中:
- 产品 - 产品名称
- 描述:
<div>this is a div</div>
- 上次公众意见 公众意见
- 最后的私人评论私人评论
- 代理电子邮件 - agentemail@ticket.com
- Freshdesk URL - www.freshdesk.com