Jtable A JQueryプラグインを使用してAJAXベースのCRUDテーブルを作成しているcakephpプロジェクトに取り組んでいます。私はからデータにアクセスしています:
localhost/mydomain/ControllName/functionName i.e
localhost/mydomain/My/getUserPlan
私は次の方法でアクションを与えましたが、同じページのURLをアクションとして取っています
これが私のコードです:
$('.list-of-location').jtable({
title: 'Table of location',
actions: {
getUserPlanAction:'/My/getUserPlan' // It is not used by Jtable, instad taking same page url
},
fields: {
arrivaldate:{
title: 'From',
width: '40%'
},
departuredate: {
title: 'To',
width: '40%',
key: true,
create: false,
edit: false,
list: false
},
country: {
title: 'Destination',
width: '40%'
},
regular_cost:{
title: 'reguler budget',
width: '20%'
},
backpacker_cost: {
title: 'low budget',
width: '30%',
type: 'date',
create: false,
edit: false
}
}
});
$('.list-of-location').jtable('load');
どのようにアクションを与えるか考えてください。私も試しました:
1) getUserPlanAction:'getUserPlan'
2) getUserPlan:'/My/getUserPlan'
3) getUserPlan:'getUserPlan'
4) アクション:「/My/getUserPlan」
アクションとしてですが、これらの動作とエラーのいずれもありません:
An error occured while communicating to the server.
前もって感謝します!