로드 할 리소스의 ID를 포함하는 개체가 있고이 리소스를 템플릿 자체에 바인딩하려고합니다. 일반적으로 자원은 다음과 같이 결합 할 수 있습니다 resid
는 문자열 리소스의 ID입니다데이터 - win-res 특성을 가진 리소스를 동적으로 바인딩
<div class="description" data-win-res="{textContent:'taxCalDescription'}" ></div>
<div class="name" data-win-bind="textContent:'TaxCal'" ></div>
. 그러나 id를 직접적으로 가지는 대신 객체를 가지며, 그 중 하나는 리소스 id입니다. data-win-bind
동안
var tool = {
name: "TaxCal",
descriptionResId : "taxCalDescription"
}
내가 이런 식으로 바인딩 시도
<div class="description" data-win-res="{textContent: tool.descriptionResId}" ></div>
<div class="name" data-win-bind="textContent:tool.name" ></div>
가 tool
개체에 액세스 할 수, 내가 객체를 말해봐, data-win-res
는 할 수 없습니다. 'cannot find descriptionResId of undefined'
그렇다면 어떻게 동적 리소스 ID를 템플릿에 바인딩 할 수 있습니까?