程序问答   发布时间:2022-06-02  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Angular 将变量绑定到值为 string大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

如何解决Angular 将变量绑定到值为 String?

开发过程中遇到Angular 将变量绑定到值为 String的问题如何解决?下面主要结合日常开发的经验,给出你关于Angular 将变量绑定到值为 String的解决方法建议,希望对你解决Angular 将变量绑定到值为 String有所启发或帮助;

我正在尝试将包含日期和时间的变量绑定到 Component A 内的键值对。我可以在控制台中看到 currentDate 的值,但是当我尝试将变量绑定到 valuekey = currdate 时,我收到一条错误消息,指出该变量未定义。>

Angular 将变量绑定到值为 string

Angular 将变量绑定到值为 string

本质上,我想用类似 undefined

的内容替换显示 FrIDay May 21 11:38:19 的部分

Angular 将变量绑定到值为 string

组件 A - ComponentA.ts

import { Component,HostListener } from '@angular/core';
import { service } from '../../..common/service';


... Some Code...

@Component({
   SELEctor: 'ComponentA',styleUrls: ['./ComponentA.CSS'],templateUrl: './ComponentA.HTML'
})

export class ComponentA {


... Some Code ...

currentDate: any;

plotDesc: { [key:string]: String } = {
     currdate: `the number of open requests since <div *ngIf="currentDate">${this.currentDate.data.datE}</div>`
};

constructor(private sw: servicE){ }

... Rest of Code ...

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

大佬总结

以上是大佬教程为你收集整理的Angular 将变量绑定到值为 string全部内容,希望文章能够帮你解决Angular 将变量绑定到值为 string所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。