如何将翻译过滤器添加到 ngAdmin 的通知中?
How to add translation filter to notification of ngAdmin?
我的代码是这样的:
function enableUser(Restangular, $state, notification) {
...
...
notification.log(
{{ "DISABLED_LOG_DISABLE" | translate }},
{ addnCls: 'humane-flatty-success' });
}
我发现它会直接在屏幕上显示{{ "DISABLED_LOG_DISABLE" | translate }}
但是我需要的是Disabled employee
当我给它{'DISABLED_LOG_DISABLE': 'Disabled employee'}
此表达式用于HTML 文件“{{ "DISABLED_LOG_DISABLE" | 翻译}”
你应该做的是注入 $translate 然后调用它。例如:
$translate('DISABLED_LOG_DISABLE').then(function(translatedString) {...})
我猜你正在使用 angular-翻译。
我的代码是这样的:
function enableUser(Restangular, $state, notification) {
...
...
notification.log(
{{ "DISABLED_LOG_DISABLE" | translate }},
{ addnCls: 'humane-flatty-success' });
}
我发现它会直接在屏幕上显示{{ "DISABLED_LOG_DISABLE" | translate }}
但是我需要的是Disabled employee
当我给它{'DISABLED_LOG_DISABLE': 'Disabled employee'}
此表达式用于HTML 文件“{{ "DISABLED_LOG_DISABLE" | 翻译}” 你应该做的是注入 $translate 然后调用它。例如:
$translate('DISABLED_LOG_DISABLE').then(function(translatedString) {...})
我猜你正在使用 angular-翻译。