私は svc (C#) にリクエストを行っている Extjs ajax リクエストを持っています - それは常に xml data を返します。
proxy: {
type: 'ajax'
, url: '/Service/TestService.svc/getUserList'
,actionMethods: {
read: 'POST'
}
,reader: {
type: 'json'
,root: 'records'
,totalProperty: 'count'
}
,writer: {
type: 'json'
}
,extraParams: {
mode: 'list'
}
}
json 形式で応答を取得する方法を教えてください。