2017-12-06 13 views
-1
Mustache.Js 템플릿의 JSON 데이터 역

답변

0

대로 "바닐라 아이스"를 표시해야합니다 결과 Array.prototype.reverse() 함수를 사용해 보셨습니까?

var shows = { "shows" : [ 
 
\t \t { "title" : "Strawberry Shortcake", 
 
\t \t \t \t \t "category" : "children", 
 
\t   "description" : "<a href='#'>A show</a> about a cake", 
 
\t   "video" : "none" 
 
\t  }, 
 
\t  { "title" : "Vanilla Ice", 
 
\t \t \t \t \t "category" : "children", 
 
\t   "description" : "A show about a ice", \t   
 
\t   "video" : "none" 
 
\t  } 
 
\t  ] }; 
 
     
 
shows.shows.reverse(); 
 

 
console.log(shows.shows);

+0

감사 루카, 그와 기쁨. 결국 나는 URL JSON 파일을 사용하게 될 것이다. 따라서 JSON에 액세스 할 수 없으므로 템플릿 코드에 일부 편집을 추가하는 것이 이상적입니다. – Stix5

+0

JSON에 액세스 할 수 없다면 어떻게 렌더링 할 계획입니까? – Luca

+1

내 외부 JSON 파일의 경우 데이터의 끝에 reverse() 옵션을 추가하십시오.'var html = Mustache.render (template ...') 완벽하게 작동합니다. 도움을 청합니다. – Stix5