$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>posts - call to jquery ajax failing with 500 error when passing extra data field|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

posts - call to jquery ajax failing with 500 error when passing extra data field

matteradmin9PV0评论

I have the following jQuery for doing an Ajax call and it works fine:

jQuery(document).ready( function($){
$( "#mystatus" ).change(runMyStatus);

 function runMyStatus() {
  var mystatus = this.value;
  var data = {
        'action': 'bikeride_mystatus_function',
        'mystatus': mystatus,
        // 'rideID' : 123,
        'nonce': frontEndAjax.nonce
    };

   var ajaxRequest = $.ajax({
       url: frontEndAjax.ajaxurl,
       type: "post",
       data: data
   });
   ajaxRequest.done(function(response) {
     alert('Success');
   });
   ajaxRequest.fail(function(jqXHR, textStatus, exception) {
     alert('Error.\n' + jqXHR.status + ' ::' + textStatus + ' ::' + exception);
   });
 } // end runMyStatus
// end document ready
});

If I uncomment the line with rideID then it fails with a "500" status (I tried putting 123 in quotes but it made no difference). If I change the type from "post" to "get" then it works. This error occurs even with no plugins enabled and using the twentyseventeen theme. Any idea what is causing the error?

Post a comment

comment list (0)

  1. No comments so far