Sencha Grid 405에러 415에러 처리
2024. 11. 26. 22:05ㆍJavascript/Sencha
405에러: Post방식으로 호출해야 하는데, Get방식으로 호출했기 때문에 발생
415에러: Media Type이 정의되지 않아서 발생
Ext.create('Ext.data.Store', {
storeId: 'nodeStore', // Assign an ID for easy reference
fields: ['DATA1', 'DATA3', 'DATA8', 'DATA2'], // Define fields
proxy: {
type: 'ajax', // Use Ajax to fetch data
url: '/Node/getNode2List.do', // Server endpoint to fetch data
actionMethods: {
read: 'POST' // Specify that the "read" operation (load) should use POST
},
headers: {
'Content-Type': 'application/json; charset=utf-8' // Set the Content-Type header
},
reader: {
type: 'json', // Data format returned by the server
rootProperty: 'result' // Root property containing data array
},
extraParams: {
param1: 'value1', // Additional parameters to send in the request body
param2: 'value2'
},
writer: {
type: 'json' // Serialize request parameters as JSON
}
},
autoLoad: true // Automatically load data when the store is created
});
'Javascript > Sencha' 카테고리의 다른 글
Sencha Grid 선택된 row 색깔 바꾸기 (0) | 2024.11.27 |
---|---|
Sencha Grid scroll 추가 (0) | 2024.11.26 |
Sencha chart에서 확대 축소 처리 (0) | 2024.11.24 |
Sencha layout item들이 수평으로 꽉차게 보이도록 처리 (0) | 2024.11.24 |
Sencha chart x축 글자 수직으로 표시하기 (0) | 2024.11.24 |