我试图在答案中保存JSON内容。
例如,QnA对就像
从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内容作为答案?或者我错过了什么?