Ext JS isField 가 비어 있 거나 대상 이 아 닌 문제 해결

1452 단어 Field
Ext Js 의 DataGrid 를 할 때 이런 문제 가 자주 발생 합 니 다. 화 후 구 글 은 문제 가 없고 IE8 과 다음 버 전 은 통과 할 수 없습니다. 디 버 깅 을 통 해 알 립 니 다.
"isField 가 비어 있 거나 대상 이 아 닌 문제 해결".
이것 은 보통 우리 가 js 코드 에 쉼표 를 하나 더 넣 어서 생 긴 것 이다.
예 를 들 면:
   Ext.define('entity', {
    extend: 'Ext.data.Model',
    fields: [
        { name: 'optDate', type: 'string',convert: null, defaultValue: undefined},
        { name: 'area', type: 'string',convert: null, defaultValue: undefined},
        { name: 'ent', type: 'string',convert: null, defaultValue: undefined},
        { name: 'device', type: 'string',convert: null, defaultValue: undefined},
        { name: 'vocSum', type: 'string',convert: null, defaultValue: undefined},  //      ,         
    ],
    idProperty: 'id'
});

좋은 웹페이지 즐겨찾기