您好我是moovweb的新手,我不得不在ajax响应上应用转换逻辑的要求,该响应以包含html的json格式出现,我必须在我的页面上添加。
样本回复
{
"success":true,
"html" :"<div>This can be a big html data</div>"
}
基本上,我需要对该html字符串应用转换。我浏览了文档,但我没有做任何事来处理这种情况。
有什么办法吗?
答案 0 :(得分:0)
如果我正确理解您的问题,那么您需要采取几个步骤来解决此问题。
找到ajax响应网址后,在tritium脚本中打开main.ts文件,如果您的响应网址与上面提供的格式类似,请插入以下代码:
match($path){
with(/ajax/){ #or wherever the site files for the ajax response are contained
log("--> importing ajax.ts")
@import ajax.ts
}
}