0

我正在使用 Watson 对话 API 编写对话。现在我想在对话框中插入一个超链接。

我在这里这里尝试了这些解决方案,但它们对我不起作用。

4

1 回答 1

1

在这种情况下,您可以在Conversation flow中执行此操作。添加或替换 JSON 中的文本。在流中添加带有标签的 url<a target>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"
    }
  }
}

在此链接中查看更多信息。我用更多细节回答了同样的问题。

在您的回复中添加(不是高级回复):

<a  target="_blank" href="https://google.com.br">Google</a>.\n<br/><br/>

如果您对此有更多疑问,请告诉我,我会尽力帮助您。

于 2017-03-02T12:34:00.973 回答