我目前正在使用Odata端点,并且在使用包含@的标记引用JSON值时遇到问题。控制台显示“ SyntaxError |无效或意外的令牌”
pm.test("Your test name", function () {
var jsonData = pm.response.json();
pm.expect(jsonData.@odata.count).to.eql(73);
});
有人可以解释我如何引用该值吗?
答案 0 :(得分:0)
pm.test("Your test name", function() {
var jsonData = pm.response.json();
pm.expect(jsonData['@odata.count']).to.eql(73);
});