Sencha post 방식으로 데이터 전송시, 동적으로 파라메터 추가
2024. 7. 27. 18:17ㆍJavascript/Sencha
form.submit({
params: {
'_csrf': document.getElementById('_csrf').innerText
},
success: function(form, action) {
Ext.Msg.alert('Failed', action.result.msg);
},
failure: function(form, action) {
Ext.Msg.alert('Failed', action.result.msg);
}
});
'Javascript > Sencha' 카테고리의 다른 글
Sencha에서 custom component 적용하기 (0) | 2024.08.25 |
---|---|
Ext.form.Panel 설정 (0) | 2024.08.03 |
sencha에 외부 js 파일 import 하기 (0) | 2024.07.27 |
Main을 원하는 대로 변경 (0) | 2024.07.21 |
theme css 파일 위치 (0) | 2024.07.16 |