gpt4 book ai didi

javascript - Angular 平移显示键

转载 作者:行者123 更新时间:2023-12-03 05:25:54 27 4
gpt4 key购买 nike

在我的应用程序中,我使用 angular translate .

在我的 index.html 上,我放置了指令 translate-cloak class="translate-cloak".translate-cloak {visibility: hidden;}<body>但对于<div ui-view></div>内容键显示在我翻译的文本之前。

在我的 Controller 中我尝试这样做

function SearchCtrl ($translatePartialLoader, $translate) {
$translatePartialLoader.addPart('../components/search');
$translate.refresh();

$translate.onReady().then(function(){
alert($translate.instant('SEARCH_MONTH')); #display SEARCH_MONTH and not the content
...

如何在渲染 View 之前等待模块加载?

谢谢

最佳答案

要等待文件下载完毕,您必须执行以下操作:

$translatePartialLoader.addPart('../components/search');
$translate.refresh().then( /* Do your work here */ );

关于javascript - Angular 平移显示键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41144865/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com