0
我有麻煩插入使用模式的甜蜜警報數據插入數據,這是我的腳本:如何使用模式的甜蜜警報Ajax和笨
function gettour(){ swal.setDefaults({ input: 'text', confirmButtonText: 'Next', showCancelButton: true, animation: false, progressSteps: ['1', '2'] }) var steps = [ { input: 'number', title: 'Question 1', text: 'Berapa quantity yang di pesan' }, { input: 'text', title: 'Question 2', text: 'Tanggal Keberangkatan' }, ] swal.queue(steps).then(function (result) { swal.resetDefaults() swal({ }) }, function() { swal.resetDefaults() var qty = result[0]; var tglgo = result[1]; var dataString = 'qty='+qty+'tglgo='+tglgo; $.ajax({ type:'POST', data:dataString, url:'travel.yes/garden/request', success:function(data) { alert(data); } }); }) };
這是我的控制器
public function request() { $qty = $this->input->post('qty'); $tglgo = $this->input->post('tglgo'); $results = $this->model_crud_admin->request_tour($qty,$tglgo); if($results){ redirect('garden/member_area?auth=tour','refresh'); } }
謝謝:)