i18n을 어떻게 사용하여 "title"변수가 traslatated json의 값을 사용합니까? 그것은 "Mis viajeses"를 반환해야하며 지금은 아무 것도 반환하지 않습니다. 감사합니다 trips-header.jadeangularjs에서 i18n을 사용하는 방법 1.6
나는 이것을했고 나는 화면에 "0"을 얻는다.
.trips-header
.background-image
.header-content
p.title.ng-i18next {{ title | i18next}}
p.sub-title.ng-i18next {{ sub-title | i18next}}
미 JSON 여기
{
"es-AR": {
"translation": {
"title":"Mis Viajes!",
"sub-title": " te ayuda a planificar y organizar tus viajes."
}
}
}
인터넷에서 보셨나요? https://github.com/i18next/ng-i18next –
예! 그러나 클래스에 적용하는 방법을 이해할 수는 없습니다. 어떻게하면됩니까? (예제를 참조로 사용하십시오.) –