찾은 결과물1.

http://stackoverflow.com/questions/8306294/script438-object-doesnt-support-property-or-method-keys-for-ie/16183419

2.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys


자바스크립트에서 JSON데이터를 다룰 때 IE8에서 동작해야 하는지 체크해야 할 때가 있다.

싫지만...

어찌되었든 핸들링해야 할 때 JSON 데이터의 개수를 가져와야 할 때가 있는데


IE11이나 다른 브라우저에서는 제공하지만 IE8에서는 제공하지 않는 Object.Keys라는 함수가 있다.

그래서 해당 함수를 추가해 주어야 한다.


 if (!Object.keys) {
  Object.keys = (function () {
    var hasOwnProperty = Object.prototype.hasOwnProperty,
        hasDontEnumBug = !({toString: null}).propertyIsEnumerable('toString'),
        dontEnums = [
          'toString',
          'toLocaleString',
          'valueOf',
          'hasOwnProperty',
          'isPrototypeOf',
          'propertyIsEnumerable',
          'constructor'
        ],
        dontEnumsLength = dontEnums.length;

return function (obj) {
      if (typeof obj !== 'object' && typeof obj !== 'function' || obj === null) throw new TypeError('Object.keys called on non-object');

var result = [];
for (var prop in obj) {
        if (hasOwnProperty.call(obj, prop)) result.push(prop);
      }
if (hasDontEnumBug) {
        for (var i=0; i < dontEnumsLength; i++) {
          if (hasOwnProperty.call(obj, dontEnums[i])) result.push(dontEnums[i]);
        }
      }
      return result;
    }
  })()
};


+ Recent posts