QnA制造商,是否有可能存储JSON内容作为答案

时间:2018-03-02 03:00:32

标签: qnamaker

我试图在答案中保存JSON内容。

例如,QnA对就像

  • 问题:维修中心在哪里。
  • 答案:{" text" :"维修中心找到..."," next":"将 你想知道维修中心的电话号码吗? }

从QnA服务收到此类答案时,我的聊天机器人会做一些特别的事情。

dynamic answser = JObject.parse(qnaResponse.answer);
if (answer.next == string.Empty){
   //End conversation
}else{
   await context.PostAsync(answer.next);
}

但是我总是在响应回答中得到一个乱码的字符串,我无法解析JSON对象并进行其余的对话。

{ "text":" the repair center locates ... " ,"next": "would you like to know the phone number of the repair center" }

是否可以存储JSON内容作为答案?或者我错过了什么?

0 个答案:

没有答案