TypeError: Cannot read properties of undefined (reading 'id')
TypeError: Cannot read properties of undefined (reading 'id')
我的终端出现这个错误:
TypeError: Cannot read properties of undefined (reading 'id')
我正在尝试测试对 API 的调用,但出现错误。
我的函数:
itemToForm = () => {
this.api.send(this.component, 'get',
{ lang: 'ES', filter: { id: this.item['id'] } }
).then(resEsp => {
this.item = resEsp['data'][0];
this.api.send(this.component, 'get',
{ lang: 'EN', filter: { id: this.item['id'] } }
).then(res => {
let itemEng = res['data'][0];
let fields = this.formDef.map(register => register.filter(
field => field['register_table'].indexOf('traduction') !== -1
).map(
field => field['field_name'])
).filter(register => register.length);
fields = fields.length ? fields[0] : [];
if (itemEng) {
this.item = Object.keys(itemEng).reduce((obj, key) => {
obj[key] = this.item[key];
if (fields.indexOf(key) !== -1) {
obj[key + '_eng'] = itemEng[key];
}
return obj;
}, {});
}
if (this.item) {
this.setForm();
}
})
})
}
我的规范文件:
it('should call api.send', () => {
let spy1 = spyOn(api, 'send');
let item = {
id: 1,
name: 'test',
}
component.addItem(item);
component.itemToForm();
expect(spy1).toHaveBeenCalled();
});
发生了什么:
函数 itemToForm()
在 this.item
准备就绪之前被调用。
有很多策略可以避免这个错误。一个很简单的方法是在函数的开头添加一个捕捉器,像这样:
itemToForm = () => {
if(this.item === undefined) {return}
// The rest of the code
}
如果数据尚不存在,这将停止函数。
一个更优雅的解决方案 可能是在您的操作顺序中更进一步,找到谁在调用 itemToForm()
并确保数据在调用之前存在。
我碰到了这个问题,但我的问题实际上完全不同。
出于某些原因在我的代码中
import { SOME_OBJECT } from '.';
应该是这样的:
import { SOME_OBJECT } from './proper-file';
以防有人知道,我在尝试使用 npm install [path to module here]
安装本地 npm 模块时收到错误 Cannot read properties of undefined (reading 'spec')
。问题根源:我没有在 package.json
.
中给本地模块命名
我的终端出现这个错误:
TypeError: Cannot read properties of undefined (reading 'id')
我正在尝试测试对 API 的调用,但出现错误。
我的函数:
itemToForm = () => {
this.api.send(this.component, 'get',
{ lang: 'ES', filter: { id: this.item['id'] } }
).then(resEsp => {
this.item = resEsp['data'][0];
this.api.send(this.component, 'get',
{ lang: 'EN', filter: { id: this.item['id'] } }
).then(res => {
let itemEng = res['data'][0];
let fields = this.formDef.map(register => register.filter(
field => field['register_table'].indexOf('traduction') !== -1
).map(
field => field['field_name'])
).filter(register => register.length);
fields = fields.length ? fields[0] : [];
if (itemEng) {
this.item = Object.keys(itemEng).reduce((obj, key) => {
obj[key] = this.item[key];
if (fields.indexOf(key) !== -1) {
obj[key + '_eng'] = itemEng[key];
}
return obj;
}, {});
}
if (this.item) {
this.setForm();
}
})
})
}
我的规范文件:
it('should call api.send', () => {
let spy1 = spyOn(api, 'send');
let item = {
id: 1,
name: 'test',
}
component.addItem(item);
component.itemToForm();
expect(spy1).toHaveBeenCalled();
});
发生了什么:
函数 itemToForm()
在 this.item
准备就绪之前被调用。
有很多策略可以避免这个错误。一个很简单的方法是在函数的开头添加一个捕捉器,像这样:
itemToForm = () => {
if(this.item === undefined) {return}
// The rest of the code
}
如果数据尚不存在,这将停止函数。
一个更优雅的解决方案 可能是在您的操作顺序中更进一步,找到谁在调用 itemToForm()
并确保数据在调用之前存在。
我碰到了这个问题,但我的问题实际上完全不同。
出于某些原因在我的代码中
import { SOME_OBJECT } from '.';
应该是这样的:
import { SOME_OBJECT } from './proper-file';
以防有人知道,我在尝试使用 npm install [path to module here]
安装本地 npm 模块时收到错误 Cannot read properties of undefined (reading 'spec')
。问题根源:我没有在 package.json
.