gpt4 book ai didi

javascript - 在 keydown 上,为什么值的 console.log 与将值分配给对象不同?

转载 作者:行者123 更新时间:2023-12-01 15:39:58 26 4
gpt4 key购买 nike

当我在文本框中键入并控制台在 Chrome 中记录 keydown 事件时,我可以看到它有很多属性(特别是我正在尝试访问 KeyboardEvent.code)。

控制台输出

{
altKey: false
bubbles: true
cancelBubble: false
cancelable: true
charCode: 0
code: "Tab"
composed: true
ctrlKey: false
currentTarget: null
defaultPrevented: true
detail: 0
eventPhase: 0
isComposing: false
isTrusted: true
key: "Tab"
keyCode: 9
location: 0
metaKey: false
path: (25) [input#My-monthly-budget.form-control.p-0.border-left-0.spec--money-input.ng-untouched.ng-invalid.is…, div.input-group.is-invalid, div.fc-col-input, div.fc-row, finance-control-money.col-sm-12.my-2.my-md-3.my-lg-0.col-lg-3, div.row.mb-1.pb-2.ng-star-inserted, finance-filters-section.mt-5.mt-lg-3.pt-1, div.finance-filters-container, section#finance-filters.ng-star-inserted, finance-section.ng-star-inserted, section.pl-3.py-3, div.ng-tns-c15-4.ng-trigger.ng-trigger-toggleAccordion, div.py-3, personalise-journey-step-accordion#personalise-funding.ng-tns-c15-4, div.container.mt-5, ng-component.ng-star-inserted, ng-component.ng-star-inserted, div.position-relative.pt-5.ng-trigger.ng-trigger-routerTransition, div.ng-tns-c3-1, ng-component.ng-tns-c3-1.ng-star-inserted, app-root, body#login-page.login-page.system-page.live.auth-page, html, document, Window]
repeat: false
returnValue: false
shiftKey: false
sourceCapabilities: InputDeviceCapabilities {firesTouchEvents: false}
srcElement: input#My-monthly-budget.form-control.p-0.border-left-0.spec--money-input.ng-untouched.ng-invalid.is-invalid.ng-dirty
target: input#My-monthly-budget.form-control.p-0.border-left-0.spec--money-input.ng-untouched.ng-invalid.is-invalid.ng-dirty
timeStamp: 11386.555000091903
type: "keydown"
view: Window {parent: Window, opener: null, top: Window, length: 0, frames: Window, …}
which: 9
}

但是当我将此值分配给一个对象时,我可以访问的唯一属性是“isTrusted”

对象值
{ "isTrusted": true }

这方面的一个例子可以在下面的 CodePen 中看到

https://codepen.io/aidanbiggs/pen/KKdWmBQ

HTML
<my-app></my-app>

typescript
// import does not work in Codepen
// using const instead
const {Component, HostListener} = ng.core;
const {bootstrap} = ng.platform.browser;

@Component({
selector: 'my-app',
template: '<div style="padding:1rem; display:flex; flex-direction: column"><input placeholder="Type here to see"> <div style="margin-top:1rem;">Event has property "code": {{value}}</div><div style="margin:1rem 0">Event:</div><span style="border:1px solid black; padding:1rem">{{event | json}}</span><div style="margin-top:1rem">View console to see difference between object and console.log</div>'
})
class AppComponent {
public value:boolean ;
public event: KeyboardEvent;
@HostListener('keydown', ['$event'])
public onKeyDown(event: KeyboardEvent): boolean {
this.value = event.hasOwnProperty('code');
this.event = event;
console.log(event)
}}

bootstrap(AppComponent);

为什么事件的console.log()和分配事件有区别?

最佳答案

Why is there a difference between the console.log() of the event and assigning the event?



没有区别,您会看到不同的输出,因为 json管道 ( {{event | json}} ) 执行 JSON.stringify将值转换为其 JSON 格式的表示。 Source

您可以找到更多信息 JSON.stringify作品 here

因此,如果您将日志更新为 console.log(JSON.stringify(event)) - 你会得到完全相同的输出。

关于javascript - 在 keydown 上,为什么值的 console.log 与将值分配给对象不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61410474/

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