0
在我的AngularJS應用程序中,我使用了角度轉換來實現國際化。如何在ng-dropdown-multiselect上使用角度轉換
但它不適用於ng-dropdown-multiselect
文本。
我試圖將翻譯文本與$ scope變量關聯起來,並應用$ scope。$ watch來等待更改,但它不起作用。
有人知道如何讓它成爲多語言嗎?
<div
ng-dropdown-multiselect=""
options="myModelOptions"
selected-model="mySelectedItem"
extra-settings="mySettings"
translation-texts="{
'checkAll': myScopeVariable.selectAll,
'uncheckAll': myScopeVariable.selectNone,
'buttonDefaultText': myScopeVariable.selectZero,
'selectionCount': myScopeVariable.selectCount,
'dynamicButtonTextSuffix': myScopeVariable.selectSufix
}">
</div>
你怎麼在你的控制器設置myScopeVariable? – Fetrarij
這只是一個例子,我用這種方式:$ scope.myScopeVar ...明白了嗎? – kopzinski