我正在为我的项目使用 Jqote2。每当我尝试通过 $.jqote 调用特定的 lambda 时,都会显示“ReferenceError:未定义 JQOTE2_TMPL_EXEC_ERROR”
与 lambda 对应的模板是合理的,并且我传递给 lambda 的参数在逻辑和语法上都是正确的。我在加载模板时正在进行同步 ajax 调用,因此没有机会不加载模板。
我使用的模板是
<div class="facet"><h4><%=decodeURI(this.attributes.label)%></h4>
<%if("true"===decodeURI(this.attributes.autoExpand)){%>
<ul style="display:block">
<%}else{%>
<ul style="display:none">
<%}%>
<%=window.createonline.service.FacetService.buildFacet(this.item)%>
</ul></div>
我尝试移动元素,但徒劳无功。
可能是什么错误?请帮忙!!!