在 Watson 对话对话中插入超链接
Insert hyperlink inside Watson dialog conversation
我正在编写与 Watson 对话的对话 API。现在我想在对话框中插入一个超链接。
在这种情况下,您可以在 对话流程 中执行此操作。添加或替换 JSON 内的文本。
添加带有标签 <a target>
的 url 和 href=
您的 URL 内部流。
查看我的示例(使用对话流中的示例进行编辑):
{
"output": {
"text": {
"values": [
"This is a link <a target=\\"_blank\\" href= \\"https://www.choosemyplate.gov\\">Food and nutrition Guide</a>.\n<br/><br/>Talk to you later, bye for now!"
],
"selection_policy": "sequential"
}
}
}
在 this link 中查看更多信息。
我更详细地回答了同样的问题。
在您的回复中添加(不是高级回复):
<a target="_blank" href="https://google.com.br">Google</a>.\n<br/><br/>
如果您对此有更多疑问,请告诉我,我会尽力帮助您。
我正在编写与 Watson 对话的对话 API。现在我想在对话框中插入一个超链接。
在这种情况下,您可以在 对话流程 中执行此操作。添加或替换 JSON 内的文本。
添加带有标签 <a target>
的 url 和 href=
您的 URL 内部流。
查看我的示例(使用对话流中的示例进行编辑):
{
"output": {
"text": {
"values": [
"This is a link <a target=\\"_blank\\" href= \\"https://www.choosemyplate.gov\\">Food and nutrition Guide</a>.\n<br/><br/>Talk to you later, bye for now!"
],
"selection_policy": "sequential"
}
}
}
在 this link 中查看更多信息。 我更详细地回答了同样的问题。
在您的回复中添加(不是高级回复):
<a target="_blank" href="https://google.com.br">Google</a>.\n<br/><br/>
如果您对此有更多疑问,请告诉我,我会尽力帮助您。