我的 js 文件中有 json 数据,现在我需要将其传递给 jtemplate 并显示。这是我尝试过的代码,但没有显示任何数据
$.ajax({
url: '/CMananager/getDetails',
contentType: "application/json; charset=utf-8",
data: { 'ID': ID },
type: 'GET',
cache: false,
success: function (result) {
var placeHolder = $("#templatePlaceHolder");
placeHolder.setTemplateURL("/Templates/Preview/Details.htm");
placeHolder.processTemplate(result.Name);
}
在 jtemplate 我试图读取这样的数据,什么都没有显示
<input type="text" id="Details" name="DetailsName" style="float:left; font-size:14px; line-height:42px; padding: 0; text-align: left;width: 80%;" value="{$T.Name}" maxlength="50"/>
<span id="DetailsNamespan" style="float:left; font-size:14px; line-height:42px; padding: 0; text-align: left;width: 80%;">{$T.Name}</span>