如果选择了下拉列表中的特定值,GAE 任务队列将不会继续


GAE Task queue wont continue if specific value in dropdown selected

我有一个表单,提交后将数据传递给任务队列.php,然后继续将值传递给进程.php。

以下是导致问题的下拉列表:

<select id="year" name='year'>
<option value="0">Year End...*</option>
<option value="2013">2013</option>
<option value="2014">2014</option>
<option value="2015">2015</option>
</select>

如果我选择 2015,没有问题,它将继续到 taskqueue.php然后处理.php并执行任务。如果我选择 2014 或 2013,则会出现一个空白页面,其中 url 看起来像卡在任务队列.php。

如果我将下拉菜单的所有"值"更改为 2015,那么它将继续处理任务,例如

<option value="2015">2013</option>
<option value="2015">2014</option>
<option value="2015">2015</option>

如果我更改下拉标签,则没有问题,只是似乎是值本身。

我确实有隐藏/显示下拉列表的javascript,但我看不到任何专门引用2014/2013的地方。

请参阅下面的代码形式:

    <script type="text/javascript" language="javascript">
    function display_Field(e){
        document.getElementById('month').style.display = "none";
        document.getElementById('quarter').style.display = "none";
        document.getElementById('year').style.display = "none";
        periodend=document.getElementById('periodend').value;
       if (periodend === 'Monthly') { 
        document.getElementById('year').selectedIndex = 0;
        document.getElementById('month').style.display = "inline";
        document.getElementById('year').style.display = "inline";
        document.getElementById('quarter').selectedIndex = 0;
       } 
       if(periodend === 'Quarterly') { 
       document.getElementById('year').selectedIndex = 0;
       document.getElementById('quarter').style.display = "inline";
       document.getElementById('year').style.display = "inline";
       document.getElementById('month').selectedIndex = 0;
       } 
       if (periodend === 'Yearly'){
        document.getElementById('year').selectedIndex = 0;
        document.getElementById('year').style.display = "inline";
        document.getElementById('month').selectedIndex = 0;
        document.getElementById('quarter').selectedIndex = 0;
        } 
    }
    function validate() {
        periodend=document.getElementById('periodend').value;
        month=document.getElementById('month').value;
        quarter=document.getElementById('quarter').value;
        year=document.getElementById('year').value;
        if (periodend==='0'||(periodend==='Monthly' && (month==='0'||year==='0'))||(periodend==='Quarterly' && (quarter==='0'||year==='0'))||(periodend==='Yearly' && year==='0')) {
            valid_alert='';
            if (periodend==='0') {
                valid_alert='Please select a period end'n';
            }
            if (periodend==='Monthly' && (month==='0'||year==='0')) {
                if (month==='0') {
                valid_alert=valid_alert+'Please select a month end'n';
                }
                if (year==='0') {
                valid_alert=valid_alert+'Please select a year'n';
                }
            }
            if (periodend==='Quarterly' && (quarter==='0'||year==='0')) {
                if (quarter==='0') {
                valid_alert=valid_alert+'Please select a quarter end'n';
                }
                if (year==='0') {
                valid_alert=valid_alert+'Please select a year'n';
                }
            }
            if (periodend==='Yearly' && year==='0') {
                valid_alert=valid_alert+'Please select a year'n';
                }
            alert(valid_alert);
        return false;
        } else {
        return true;
        }
    }
    </script>
    <?php 
<form id="report-form" name="report-form" action="/taskqueue.php" method="post" style="margin-bottom:40px;">
    <select id="periodend" name="periodend" class="inline" onChange="display_Field(this.selectedIndex);">
                                    <option value="0">Period Ended...*</option>
                                    <option value="Monthly">Monthly</option>
                                    <option value="Quarterly">Quarterly</option>
                                    <option value="Yearly">Yearly</option>          
                                </select>
                                <select id="month" name='month'>
                                    <option value="0">Month End...*</option>
                                    <option value="January">January</option>
                                    <option value="February">February</option>
                                    <option value="March">March</option>
                                    <option value="April">April</option>
                                    <option value="May">May</option>
                                    <option value="June">June</option>
                                    <option value="July">July</option>
                                    <option value="August">August</option>
                                    <option value="September">September</option>
                                    <option value="October">October</option>
                                    <option value="November">November</option>
                                    <option value="December">December</option>
                                </select>
                                <select id="quarter" name='quarter'>
                                    <option value="0">Quarter End...*</option>
                                    <option value="30 September">30 September</option>
                                    <option value="31 December">31 December</option>
                                    <option value="31 March">31 March</option>
                                    <option value="30 June">30 June</option>                    
                                </select>
                                <select id="year" name='year'>
                                    <option value="0">Year End...*</option>
                                    <option value="2013">2013</option>
                                    <option value="2014">2014</option>
                                    <option value="2015">2015</option>
                                </select>
    <input type="submit" id="save-submit" name="save-submit" value="Save & Setup Another" onClick="return validate();"></form>
    >?

任务队列。.PHP

<?php
require_once 'google/appengine/api/taskqueue/PushTask.php';
use google'appengine'api'taskqueue'PushTask;
$name=$current_user->businessname;
$staff_member=$current_user->user_firstname." ".$current_user->user_lastname;
$staff_email=$user_email;
$client_name=stripslashes($_POST['search']);
$periodend=$_POST['periodend'];
$month=$_POST['month'];
$quarter=$_POST['quarter'];
$year=$_POST['year'];
$comments=$_POST['comments'];
$setupanother=$_POST['save-submit'];
$submit=$_POST['submit'];
if($_POST['save-submit'] || $_POST['submit']){
$wp_task = new PushTask('/process.php', ['name' => $name
, 'staff_member' => $staff_member
, 'client_name' => $client_name
, 'staff_email' => $staff_email
, 'periodend' => $periodend
, 'month' => $month
, 'quarter' => $quarter
, 'year' => $year
, 'comments' => $comments
, 'save-submit' => $setupanother
, 'submit' => $submit
]);
$task_name = $wp_task->add();
    }
header("Location: /<another page>");
    ?>

您看到的任何可能成为问题的东西?提前感谢,很抱歉这个冗长的问题,必须确保我包括所有内容!

所以看起来我忽略了这样一个事实,即我的风格中还有另一个 id 'year'.css。所以我所做的只是在我的代码中'year'更改为'yearend'

编辑:因此,将其更改为"yearend",允许代码循环回原始页面,例如 header("Location: /<another page>");不再给出空白页,但仍然不会在后台处理任务,除非是"2015"。只是坐在任务队列中。

找到了!

这是我的任务队列.php和处理中的$year变量.php这就是问题所在。将其更改为$yearend,似乎有效。希望这就是它的结束!