打字稿错误 在home.ts中找不到名称“ Let”和“ body”。
我已经添加
"types": [
"node"
],
"typesRoots" : [
"node_modules/@types"
],
在tsconfig.json中
并导入它,但没有任何变化。
这些是代码段
load(){
Let body = {
user_id: this.anggota.user_id,
aksi: 'profile'
};
this.postPvdr.postData(body, 'file_aksi.php').subscribe(data =>{
this.members = data.profiles;
console.log(data.profiles);
});
}