我正在向服务器发送扩展查询
var query = breeze.EntityQuery.from("Incidents")
.expand("IncidentComments")
.where("IncidentID", "eq", incidentId);
并且在 http 我得到的结果是好的,具有相关实体的实体当我从微风中的查询返回时我怎么看不到数据 IncidentComments 没有评论
function getSucceeded(data) {
$scope.incident = data;
$scope.incidentComments = data.IncidentComments;
}