博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AngularJS 1.x 国际化——Angular-translate例子
阅读量:6031 次
发布时间:2019-06-20

本文共 646 字,大约阅读时间需要 2 分钟。

可运行代码如下:

 

    

{
{ 'Hello' | translate }}

 

注意:使用translate的两种常见方式,

  1. Create a pipe that we can use to translate our words in the HTML view. Like this:

{ { 'hello world' | translate }}

  1. Create a service that we can use to translate our words in JS / Typescript. Like this:
...// should display 'hola mundo' when translated to Spanishthis.translatedText = this.translate.instant('hello world'); // this.translate is our translate service ... 第二种方式方便直接在ts文件中使用!不过翻译的东西依然是在
$translateProvider.translations 里! 参考:https://scotch.io/tutorials/simple-language-translation-in-angular-2-part-1

转载地址:http://oczhx.baihongyu.com/

你可能感兴趣的文章
mysql 命令行小结
查看>>
说一下fopen和open
查看>>
12月28日二周四次【Python基础语法】
查看>>
并发编程2:认识并发编程的利与弊
查看>>
MySQL(mysql 5.7)用户密码的管理
查看>>
学习笔记第三十一节课
查看>>
六周第三次课 9.6/9.7 awk
查看>>
【VMware vSAN 6.6】5.1.基于存储策略的管理:vSAN硬件服务器解决方案
查看>>
我为什么看好IPFS
查看>>
【Ansible】3个让Ansible性能飞起的简单优化方案!
查看>>
在mac上安装 docker
查看>>
rsyslog日志管理+LogAnalyzer
查看>>
man命令详解
查看>>
linux发行版本
查看>>
网站被黑搜索快照被劫持怎么办
查看>>
怎么修改CAD编辑器中默认的线型
查看>>
Servlet简介与Servlet和HttpServlet运行的流程
查看>>
华为--PPP典型配置举例
查看>>
sqoop配置与使用
查看>>
在 Web 应用中增加用户跟踪功能
查看>>