Tidak dapat memanggil fungsi pada kejayaan AJAX
P粉020556231
P粉020556231 2023-09-02 13:54:42
0
2
461

Saya tidak berjaya menggunakan kebanyakan jQuery dengan Ajax. Saya cuba mendapatkan mesej ralat daripada respons untuk muncul dalam div pemberitahuan (toast) saya, tetapi sebagai tambahan kepada .show() dan .hide()< /code> Tiada apa-apa yang saya cuba akan berfungsi.

Saya telah menggunakan console.log() untuk memastikan ia menyahkod respons daripada url dan semuanya berfungsi seperti yang diharapkan, tetapi saya tidak boleh memanggil fungsi di dalam Ajax fungsi kejayaan< ;/ p>

Ini ialah JS semasa saya yang menyala pada klik butang.

function errMsg(code, msg) { const eCode = 'E-NS: ' + kod + '  + msg; const eMsg = '' + eCode + ''; $('.notify').kosong().html(eMsg); } $(document).ready(function() { $('#next-1').klik(fungsi(e) { e.preventDefault(); $.ajax({ url:'../data.php', kaedah: 'POST', data: $('#form-1').serializeArray(), dataType: 'JSON', kejayaan:fungsi(tindak balas){ if(response.status === benar){ $('#form-1').hide(); $('#form-2').show(); } lain { console.log(response.status); console.log('Response = ' + response.code + response.error); errMsg(response.code, response.error); var eCode = 'E-NS: ' + response.code + '  + response.error; var eMsg = '
      
2
0
0
P粉020556231
P粉020556231

membalas semua (2)
P粉038161873

hendaklah diganti denganJSON形式发送数据时,jQuery 方法.ajax()需要传入对象的data属性中的一个对象唯一的论点。您的jQuery.serialize()函数为 URL 创建参数字符串。这在这里行不通。您应该使用jQuery.serializeArray()

function errMsg(code, msg) { const eCode = 'E-NS: ' + code + '  
' + msg; const eMsg = '' + eCode + ''; $('.notify').html(eMsg); } $(document).ready(function() { $("#form-2").hide(); $('#next-1').click(function(e) { e.preventDefault(); // console.log("this will be sent to the server:",$('#form-1').serializeArray()); $.ajax({ url: 'https://jsonplaceholder.typicode.com/posts', // '../data.php', method: 'POST', data: $('#form-1').serializeArray(), dataType: 'JSON', success:function(response){ // console.log("this came back from the server:",response); if(response){ $('#form-1').hide(); $('#form-2').show(); errMsg(response.id, JSON.stringify(response)) } else { console.log(response.status); console.log('Response = ' + response.code + response.error); errMsg(response.code, response.error); } } }) }) })
.notify {border: 1px solid grey}
 
First form ...



Second form ...



This is the place for messages ...

Anda juga harus menyemak apa yang pelayan akan hantar semula. Untuk API JSON palsu saya, tiada atribut.statusdihantar semula. Jadi tidak ada gunanya mengujinya.

    P粉872182023

    Saya menyembunyikan div roti bakar saya ($('.notify')),直到 div 中有文本。但是,我忽略了添加显示此内容的函数(如下所示),并且在使用errorCheck() 更新 AJAXsuccesstidak memanggilnya selepas roti bakar dalam kod fungsi>

    function errorCheck() { if ($('.notify').text().trim().length == 0) { $('.notify').hide(); } else { var time = setTimeout(function() { $('.notify').fadeOut('200'); }, 5000); $('.notify') .show() .mouseout(function () { time; }) .mouseover(function () { clearTimeout(time); }) .click(function() { $('.notify').fadeOut('100'); }); } }
      Muat turun terkini
      Lagi>
      kesan web
      Kod sumber laman web
      Bahan laman web
      Templat hujung hadapan
      Tentang kita Penafian Sitemap
      Laman web PHP Cina:Latihan PHP dalam talian kebajikan awam,Bantu pelajar PHP berkembang dengan cepat!