如何拆分文本并在 angular 中的第一个字母后添加变量
how to split text and add variable after first letter in angular
我这里有代码,我收到错误消息“无效的 phone 号码”,但我需要在 text.How 中的第一个字母后添加可变的国家/地区,我可以这样做吗?
<p *ngIf="!result" class="error-msg"> {{'REGISTER.ERROR'| translate}}</p>
我可以看到你正在使用 ngxtranslate 你应该在问题中提到,为了更好地理解在变量中间获取文本,比如“Invalid India phone number”,然后在 translate json 必须提到的文件
"REGISTER":{
"ERROR":"Invalid {{value}} phone number"
}
并在 html
<p *ngIf="!result" class="error-msg"> {{'REGISTER.ERROR'| translate:param }}</p>
在 ts
param={
value:"India"
}
我希望你的问题得到解决编码愉快
我这里有代码,我收到错误消息“无效的 phone 号码”,但我需要在 text.How 中的第一个字母后添加可变的国家/地区,我可以这样做吗?
<p *ngIf="!result" class="error-msg"> {{'REGISTER.ERROR'| translate}}</p>
我可以看到你正在使用 ngxtranslate 你应该在问题中提到,为了更好地理解在变量中间获取文本,比如“Invalid India phone number”,然后在 translate json 必须提到的文件
"REGISTER":{
"ERROR":"Invalid {{value}} phone number"
}
并在 html
<p *ngIf="!result" class="error-msg"> {{'REGISTER.ERROR'| translate:param }}</p>
在 ts
param={
value:"India"
}
我希望你的问题得到解决编码愉快