我有以下问题 我在本地env(docker)上有我的AUT和mailhog 我想通过Mailhog API从邮件中接收代码,但是我无法访问邮件正文字段。
如果我在控制台上显示:
logger.info('response: '+res.text);
我得到:
{
"total":2,
"count":2,
"start":0,
"items":[
{exampledataset1},
{exampledataset2}
]
}
但是我如果要使用命令访问项目或总计字段:
logger.info('response: '+res.text.items[0]);
我在此行收到错误:
Uncaught TypeError: Cannot read property '0' of undefined
为什么?我如何访问字段项目?我应该使用JSON.stringify吗?