2016-08-13 27 views
0

更新 - 我已经解决了这个问题阿贾克斯POST正在发送空参数

我发现这个问题,它是在php.inipost_max_size其设置为8MB的财产。将其更改为20MB后,所有工作都应如此。感谢您指出代码中的一些语法问题。

原帖

我有一个页面的主体标记验证码:

<script type = "text/javascript" > 
    $(document).ready(function() { 
     var scriptPath = "<?php echo $jobJSPath[0]; ?>"; 
     if (scriptPath != "") { 

      var hasInput = "<?php echo $hasInput; ?>"; 
      var jobExecIp = "<?php echo $jobtekerIP; ?>"; 
      var sentToExec = "<?php echo $sentToExececution;?>"; 
      var hasOutput = <?php echo json_encode($allOutputVarName);?>; 

      $.getScript(scriptPath, function(data, textStatus, jqxhr) { 

       var jobBatchID = "<?php echo $jobsArray[0];?>"; 
       var jobID = "<?php echo $jobsArray[1];?>"; 
       var jobName = "<?php echo $jobsArray[2];?>"; 

       // execute a function inside the script has no input parameter 
       if (typeof hasInput !== 'undefined' && hasInput === 'no'){ 
        // execute a function inside the script with no input parameter 
        var returnVar = <?php echo $newJobName; ?>; 
       } 
       // execute a function inside the script has input parameter 
       if (typeof hasInput !== 'undefined' && hasInput === 'yes'){ 
        var vars = []; 

        // create an array of all the paths of the input variables 
        var arrayFromPHP = <?php echo json_encode($newAllInputVarPath);?>; 
        for (var i = 0; i < <?php echo sizeof($newAllInputVarPath);?>; i++) { 
         vars.push(JSON.parse($.ajax({type: "GET", url: arrayFromPHP[i], async: false, cache: false}).responseText)); 
        } 
        // execute a function inside the script with multiple input parameter 
        var returnVar = <?php echo $jobsArray[2]; ?>.apply(this, vars); 
       } 

       // get the execution status 
       var execMessage = textStatus; 

       // for the jobs without any return parameter 
       if (hasOutput.length = 1 && hasOutput[0] === "NULL") { 
        var result = "No parameters are being returned"; 
        $.ajax({ 
         url: 'executedJobs.php',  
         type: 'POST', 
         data: {results : result, job_batch_id : jobBatchID, job_id : jobID, job_name : jobName, sentToExec : sentToExec, jobExecIp : jobExecIp, execMessage : execMessage}, 
         cache: false 
         }); 
       } else { // for the jobs with any return parameter 

        if (typeof returnVar != 'undefined') { 

         // this parameter is going to be posted to another page 
         var result = []; 
         var numOfOutputVar = <?php echo $jobsArray[4]; ?>; 

         if (Object.prototype.toString.call(returnVar) === '[object Array]') { 
          var countIndex = 0; 
          var countValue = 0; 
          var allValuesNoArray = false; 

          // check if all the returnVar values are not [object Array] 
          $.each(returnVar, function(index, value) { 
           console.log(Object.prototype.toString.call(value)); 
           countIndex = countIndex + 1; 

           // check if value is not an [object Array] not an '[object String]' 
           if (Object.prototype.toString.call(value) !== '[object Array]' && Object.prototype.toString.call(value) !== '[object String]'){ 
            countValue = countValue + 1; 
           } 
          }); 

          // if all returnVar values are not [object Array] then true 
          if (countIndex === countValue) { 
           allValuesNoArray = true; 
          } 

          // if at least one returnVar value is an [object Array] then do 
          if (allValuesNoArray === false) { 
           // if the job has more than one return variable 
           if (numOfOutputVar > 1) { 
            $.each(returnVar, function(index, value) { 
             result.push(JSON.stringify(value)); 
            }) 
           } else { // if the job has only one return variable 
            var allRetVarToOne = []; 
            $.each(returnVar, function(index, value) { 
             allRetVarToOne.push(value); 
            }) 
            result.push(JSON.stringify(allRetVarToOne)); 
           } 
          } else { // if all returnVar values are not [object Array] then do 
           console.log(numOfOutputVar); 
           // if the job has more than one return variable 
           if (numOfOutputVar > 1) { 
            $.each(returnVar, function(index, value) { 
             result.push(JSON.stringify(value)); 
            }) 

           } else { // if the job has only one return variable 
            result.push(JSON.stringify(returnVar)); 
           } 
          } 
         } else { 
          result.push(JSON.stringify(returnVar)); 
         } 

         // executes the POST if everything is ok 
         $.ajax({ 
          url: 'executedJobs.php',  
          type: 'POST', 
          data: {results : result, job_batch_id : jobBatchID, job_id : jobID, job_name : jobName, sentToExec : sentToExec, jobExecIp : jobExecIp, execMessage : execMessage}, 
          cache: false 
         }); 
        } else { // executes this POST if the job execution was not successful, with no reason 
         var execMessage = "An unknown falure has accourd while executing, will be executed once more" 
         $.ajax({   
          type: 'POST', 
          data: {results : result, job_batch_id : jobBatchID, job_id : jobID, job_name : jobName, sentToExec : sentToExec, jobExecIp : jobExecIp, execMessage : execMessage}, 
          cache: false, 
          url: 'executedJobs.php' 
         }); 
        } 
       } 
      }).fail(function(jqxhr, settings, exception) { // executes if the getScript(scriptPath, function(data, textStatus, jqxhr) {}) faild 
       var execMessage = exception.message; 
       var result = undefined; 
       var jobBatchID = "<?php echo $jobsArray[0];?>"; 
       var jobID = "<?php echo $jobsArray[1];?>"; 
       var jobName = "<?php echo $jobsArray[2];?>"; 
       var sentToExec = "<?php echo $sentToExececution;?>"; 

       $.ajax({   
         type: 'POST', 
         data: {results : result, job_batch_id : jobBatchID, job_id : jobID, job_name : jobName, sentToExec: sentToExec, jobExecIp : jobExecIp, execMessage : execMessage}, 
         cache: false, 
         url: 'executedJobs.php' 
        }); 
      }); 
     } 
    }); 
</script> 

的问题是,我的评论下交“执行后,如果一切正常”发送空参数如果我正在使用var returnVar = <?php echo $newJobName; ?>或var returnVar = <?php echo $jobsArray[2]; ?>.apply(this, vars);执行的功能有var maxNum = 500000;var arrayMaxSize = 500000;。当我在POST的参数窗口下查看executedJobs.php的控制台时,我的右边结果不在当前的视图窗口上,当然也不在执行的页面本身上。 这是由VAR returnVar

function job1() { 
    var notSortNumArray = []; 
    var notSorted1 = []; 
    var notSorted2 = []; 
    var maxNum = 500000; 
    var arrayMaxSize = 500000; 
    var minNum = 1; 
    // create an array with arrayMaxSize random nmber between minNum and maxNum 
    for (var x = 0; x < arrayMaxSize; x++) { 
     notSortNumArray.push(Math.floor(Math.random() * (maxNum - minNum)) + minNum); 
    } 
    // The notSorted1 is from possition 0 untill random between 0 and arrayMaxSize 
    notSorted1 = notSortNumArray.slice(0, Math.floor(Math.random() * notSortNumArray.length)); 
    // The notSorted2 is from where the notSorted1 ends untill the last number form the notSortNumArray 
    notSorted2 = notSortNumArray.slice(notSorted1.length, notSortNumArray.length); 
    // job dependencies 
    var nextJob = "job2, job3"; 
    var prevJob = "null"; 
    // results 
    return [ notSortNumArray, arrayMaxSize, notSorted1, notSorted2 ]; 
} 

有趣的是,对于var maxNum = 250000;var arrayMaxSize = 250000一切都运行完美,所有的结果都被发送到executedJobs.php页进一步调用的函数。

再次我希望有人能帮助我解决这个,因为我没有一个线索,为什么它不是为var maxNum的数字更高,var arrayMaxSize参数工作做,结果是他们在那里有什么东西被发送到executedJobs。 PHP页面,但没有结果。

我知道这是很多代码,但我希望有人可以帮我解决这个问题,因为我不知道为什么它不工作。

+0

你尝试检查您的控制台中的错误? –

+0

@PraveenKumar没有任何错误,我看到'console.log(result)'的输出,它是正确的,它只是没有通过POST发送,如果我上面提到的数字太大 – TalG

+0

请把它分解为一个[最小工作示例](http://stackoverflow.com/help/mcve)。 – Jeff

回答

0

没有分号线:

var scriptPath = "<?php echo $jobJSPath[0]; ?>" 
var execMessage = "An unknown falure has accourd while executing, will be executed once more" 
符合

var hasOutput = <?php echo json_encode($allOutputVarName);?>; 

您应将其更改为:

var hasOutput = JSON.parse("<?php echo json_encode($allOutputVarName);?>"); 
+2

还有更多没有分号的行 –

+0

JSON。解析不需要那里它实际上会产生一个错误,我只使用json_encode得到正确的输入,我已经添加了所有缺少的“;” :)。 – TalG

+2

您实际上不需要JavaScript中的分号,除非您希望每行运行更多语句。我建议使用它们,不管什么tho:P –