gpt4 book ai didi

angular - 在 Angular 中发出值,记录为 [object Object] 而不是值

转载 作者:行者123 更新时间:2023-12-04 10:29:09 25 4
gpt4 key购买 nike

我在 child / parent 值(value)传递方面取得了一些进展,我一直在关注这个 youtube 视频 (https://www.youtube.com/watch?v=tZNWv-iW74I),而且我很快就到了那里。目前,我似乎无法像我想要的那样向父组件发出值,我只能发出 undefined object ,有什么想法会出错吗?只需要一个友好的插入,因为我正在学习请。
我正在尝试做的 - 移动 slider ,然后使用 slider 设置的值更新 stats.component.html 中的 showValue。
app.component.ts

import { Component, Output, EventEmitter } from '@angular/core';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],

})

export class AppComponent
{
@Output() slider1Change: EventEmitter<number> = new EventEmitter<number>();

onInputChange(event: any)
{
console.log("This is emitted as the thumb slides " + event.value);
this.slider1Change.emit(event.value)
console.log("This is emitted via @Output " + this.slider1Change);
}
}

export class SliderFormattingExample
{
formatLabel(value: number)
{
if (value >= 1000) {
return Math.round(value / 1000) + 'k';
}
return value;
}
}
日志看起来像这样,第二个控制台输出不是发出值而是发出对象:

This is emitted as the thumb slides 19550

This is emitted via @Output [object Object]

This is emitted as the thumb slides 19622


app.component.html
<h1>Hello app-component.html!</h1>

<h2>Slider Test</h2>
<mat-slider id="slider1" min="18296" max="23456" thumbLabel step="1" value="1" (input)="onInputChange($event)">
</mat-slider> <br />
<mat-slider id="slider2" min="12000" max="14000" thumbLabel step="1" value="1" (input)="onInputChange($event)">
</mat-slider>

<app-stats></app-stats>
stats.component.html
<h1>statsComponent</h1>
<p>{{ showValue }}</p>
<div (notify) = "onValueChanged($event)"></div>
stats.component.ts
import { Input, Output, Component, OnInit } from '@angular/core';

@Component({
selector: 'app-stats',
templateUrl: './stats.component.html',
styleUrls: ['./stats.component.scss'],

})
export class StatsComponent implements OnInit {

showValue: number = 99999;

onValueChanged(sliderVal: number): void
{
this.showValue = sliderVal;
}

constructor() { }

ngOnInit(): void {
}

}

最佳答案

问题在于 console.log(<string> + <object>) .这会将您的对象转换为字符串,然后再由控制台解析。

为了记录对象,您需要使用逗号分隔符:console.log(<string>, <object>) .

对于您的示例,您将使用:
console.log("This is emitted as the thumb slides ", event.value)console.log("This is emitted via @Output ", this.slider1Change)

关于angular - 在 Angular 中发出值,记录为 [object Object] 而不是值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60490434/

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