开发者问题收集

如何解决错误:无法读取未定义的属性“replace”[关闭]

2021-08-14
6012

我得到两个对象,其中有一些空格不匹配。
当我在 for..of 中使用两个替换函数时,它会报告错误。
如果我只使用一个替换,它会起作用。
但对象不匹配

我的代码在这里:

const jsonText = await tableFlyoutPanel.json.textJsonContent();
const rowContent = await alarmTable.rowContentWithHeaders(1, true);
for (const header of Object.keys(jsonText)) {
  const text = jsonText[header].replace(/s+/gm, '');
  const content = rowContent[header].replace(/s+/gm, '');
  expect(text).toStrictEqual(expect.stringContaining(content));
}

它在“内容”中返回错误。
错误代码:TypeError:无法读取未定义的属性“replace”。

console.log(rowContent);.
 {
  Time: '2021-07-10 03:42:01.000 (1 month ago)',
  'Node name': 'sapc17',
  'Node type': '-',
  Severity: 'Major',
  'Alarm name': 'Performance Management Threshold Crossed or Reached',
  'Faulty resource': 'ManagedElement=1,SystemFunctions=1,Pm=1,PmJob=memoryLoadThresholdJob,MeasurementReader=memoryLoad_mr:OSProcessingUnit=PL-3',
  Description: 'Observed value: 80; Threshold level: 80; MeasurementType: ManagedElement=1,SystemFunctions=1,Pm=1,PmGroup=OSProcessingUnit,MeasurementType=Mem.PercentUsed; Threshold Direction: INCREASING; MO instance: OSProcessingUnit=PL-3'
}

预期值在这里:
console.log(jsonText);.

{
  'Node name': 'sapc17',
  'Alarm name': 'Performance Management Threshold Crossed or Reached',
  Severity: 'Major',
  'Faulty resource': 'ManagedElement=1,SystemFunctions=1,Pm=1,PmJob    =memoryLoadThresholdJob,MeasurementReader=memoryLoad_mr:OSProcessingUnit    =PL-3',
  'Fault id': '628',
  Description: 'Observed value: 80; Threshold level: 80; MeasurementType:     ManagedElement=1,SystemFunctions=1,Pm=1,PmGroup=OSProcessingUnit    ,MeasurementType=Mem.PercentUsed; Threshold Direction: INCREASING; MO     instance: OSProcessingUnit=PL-3',
  Time: '2021-07-10 03:42:01.000 (1 month ago)',
  'Event type': 'QUALITYOFSERVICEALARM',
  'Node type': '-',
  'Probable cause': '-',
  Code: '-',
  Action: '-'
}
2个回答

您从 jsonText 获取属性键:

for (const header of Object.keys(jsonText)) {

并尝试使用它们从 rowContent 读取属性:

const content = rowContent[header].replace(/s+/gm, '');

但是这些对象具有哪些属性? jsonText 具有以下属性:

{
   "Node name":"sapc17",
   "Alarm name":"Performance Management Threshold Crossed or Reached",
   "Severity":"Major",
   "Faulty resource":"ManagedElement=1,SystemFunctions=1,Pm=1,PmJob =memoryLoadThresholdJob,MeasurementReader=memoryLoad_mr:OSProcessingUnit =PL-3",
   "Fault id":"628",
   "Description":"Observed value: 80; Threshold level: 80; MeasurementType: ManagedElement=1,SystemFunctions=1,Pm=1,PmGroup=OSProcessingUnit ,MeasurementType=Mem.PercentUsed; Threshold Direction: INCREASING; MO instance: OSProcessingUnit=PL-3",
   "Time":"2021-07-10 03:42:01.000 (1 month ago)",
   "Event type":"QUALITYOFSERVICEALARM",
   "Node type":"-",
   "Probable cause":"-",
   "Code":"-",
   "Action":"-"
}

并且 rowContent 具有以下属性:

{
  Time: '2021-07-10 03:42:01.000 (1 month ago)',
  'Node name': 'sapc17',
  'Node type': '-',
  Severity: 'Major',
  'Alarm name': 'Performance Management Threshold Crossed or Reached',
  'Faulty resource': 'ManagedElement=1,SystemFunctions=1,Pm=1,PmJob=memoryLoadThresholdJob,MeasurementReader=memoryLoad_mr:OSProcessingUnit=PL-3',
  Description: 'Observed value: 80; Threshold level: 80; MeasurementType: ManagedElement=1,SystemFunctions=1,Pm=1,PmGroup=OSProcessingUnit,MeasurementType=Mem.PercentUsed; Threshold Direction: INCREASING; MO instance: OSProcessingUnit=PL-3'
}

乍一看,很明显 jsonText 包含 rowContent 不包含的属性。因此,当您尝试从 rowContent 读取这些属性时,它们将为 undefined 。尝试在 undefined 上调用 .replace 将会失败。

目前还不清楚这段代码 试图 做什么。但有一点很清楚,那就是您不能使用不存在的属性。也许您可以在尝试使用该属性之前检查一下它?例如:

for (const header of Object.keys(jsonText)) {
  if (rowContent[header] !== undefined) {
    const text = jsonText[header].replace(/s+/gm, '');
    const content = rowContent[header].replace(/s+/gm, '');
    expect(text).toStrictEqual(expect.stringContaining(content));
  }
}

或者也许您一开始就不打算从 rowObject 读取,而这是一个拼写错误?或者也许这些对象 应该 具有相同的结构,而代码中的其他地方存在错误?鉴于问题的内容,我们不可能知道。但错误本身的来源很简单,您不能使用不存在的对象属性。

David
2021-08-15

这意味着 rowContent[header] 未定义。

检查 rowContent - 例如,在 const rowContent = .... 之后放置 console.log(rowContent); ,这应该会给您一些线索,并且可能在 for 循环内记录 header 值。

Erwin van Hoof
2021-08-14