$("#div").bindTemplate({
소스 : json 객체,
템플릿 : null | $("#template") | "
{{object}}
",
dateFormat : "d.m.y",
tagOpen : "{{",
tagClose : "}}"
});
$("#template")를 출력합니다. template
그 중 dateFormat, tagOpen, tagClose는 null일 수 있으며 기본 구성을 채택하고 있으며, 기본 tagOpen 및 tagClose는 "{{" 및 "}}로 표시되어 있음을 밝힐 필요가 있습니다. "
Json2Template의 간단한 사용법을 보기 위해 작은 예를 들어보겠습니다.
return Json(Newtonsoft.Json.JsonConvert.SerializeObject(InitUserInfo()), JsonRequestBehavior.AllowGet);
먼저 간단한 HTML 템플릿을 정의합니다.