我建立如下所示的對象(虛擬HTTP響應對象):如何用打字稿中的函數和數據創建對象?
res = {
body : '',
write : (text : string) => {
this.body = this.body + text;
},
end :() => {}
};
但打字稿編譯器是給錯誤:
error TS2108: 'this' cannot be referenced within module bodies.
我知道這是可能的(具有this
內部對象)在JavaScript中,如何在打字稿中完成此操作?