第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

對 next 的調(diào)用導致奇怪的錯誤

對 next 的調(diào)用導致奇怪的錯誤

呼啦一陣風 2023-09-21 17:23:19
這會導致以下錯誤:Cannot read property 'length' of undefinedconst msg$ = new Subject<string>();msg$.subscribe(console.log)of("Hello").subscribe(msg$.next);但是,如果我將 msg$.next 包裝在函數(shù)中,則它可以正常工作而不會出現(xiàn)任何錯誤。拉姆達函數(shù)const msg$ = new Subject<string>();msg$.subscribe(console.log)of("Hello").subscribe(greeting => msg$.next(greeting));匿名函數(shù)const msg$ = new Subject<string>();msg$.subscribe(console.log)of("Hello").subscribe(function(greeting){  msg$.next(greeting);});命名函數(shù)function nextMsg(greeting){  msg$.next(greeting);}const msg$ = new Subject<string>();msg$.subscribe(console.log)of("Hello").subscribe(nextMsg);它們都只是包裝函數(shù),看起來除了調(diào)用下一個函數(shù)之外什么也不做。這里發(fā)生了什么?似乎這里有一個我不知道的 JavaScript 陷阱。
查看完整描述

1 回答

?
互換的青春

TA貢獻1797條經(jīng)驗 獲得超6個贊

為了后代而接受的答案


我認為這個問題歸結(jié)為“當將函數(shù)作為參數(shù)傳遞時,“this”的值是什么?”。

this在您的第一個示例中具有錯誤的值。如果你把 a 放在console.log(this)里面nextMsg,你會發(fā)現(xiàn)它缺少被訪問的SafeSubscriber屬性。observers.lengthrxjs6 中的函數(shù)Subject#next依賴 this 成為Subject具有observers.length屬性的 a

是的,當然??磥砦液苡薮?,我沒有注意到。msg$.next.bind(msg$)作品。

obj.func沒有obj作為上下文,而obj.func()有。


查看完整回答
反對 回復 2023-09-21
  • 1 回答
  • 0 關注
  • 128 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號