0

我有这样的对象:

data() {
    return {
         headings: ['id','remark'],
         rows: [
            {
              id: 1,
              FirstName: 'Jhon',
              LastName: 'Doe',
              remark: 0
           },
           {
              id: 2,
              FirstName: 'Foo',
              LastName: 'Bar',
              remark: 1
           }
         ]
    }}

有没有我如何检查行对象中是否存在关键标题对象。

感谢和抱歉我的英语不好。

4

1 回答 1

0

是的,有办法

function (row) {
   return this.headings.reduce((res, heading) => res &= row.hasOwnProperty(heading), true)
}

此方法应返回 true - 如果该行具有标题。

于 2017-02-16T16:57:46.770 回答