无法将PHP中的数组转换为注入网页的javascript函数

时间:2013-08-15 20:23:40

标签: php jquery

在JQuery对话框中,我向用户显示他们可以访问的数据库中的帖子列表。这来自第一个PHP脚本。用户选择一个帖子,并通过第二个PHP脚本在数据库中执行操作。这项工作的一部分,但我无法将一个数组进行处理,POST,到第二个使用数组数据执行查询的PHP脚本。

序列以jQuery ajax POST开头。 Firebug控制台在POST中显示正确的数据,并将它们列为数组元素,例如field [] abc,field [] xyz等。第一个PHP,editPost.php,接收一个字符串,其中有效,其次是数组如

$propertyFields = array();
$propertyFields = $_POST[ 'propertyFields' ];

在第一个脚本的查询使用字符串而不是数组完成后,while循环构造选择项列表,并填充一个有效的javascript函数。它提供了列表描述,但不包括propertyFields数组 - 应该是第二个PHP脚本。

while($row = mysql_fetch_array($fetch)) {
    $activeCount = mysql_real_escape_string($row["activeCount"]);
    $error_NumberOfActives = "<ul>Welcome back.
    <br>Click the 'Edit this one' button that you want to edit or change.
    <script type='text/javascript'>var properTFields=[]; //added array declaration,but no fix
    function retrievePost( idx, propertyID, properTFields ) {
//retrieve database content for clicked post and changes text message inside the button 
    alert( properTFields + '|in editPost' ); //test - get - function Array() {[native code]}|in editPost
    jQuery.ajax({
        url: '../phpFunctions/editPostUpdate.php',  
        data:{  properTID: propertyID, //POSTs OK
                propertyFields: properTFields //propertyFields is empty in POST to editPostUpdate.php                          },                                   
        type:'POST',                                       
        success: function (data) {
            if (data ) {
            //button reads 'can now be changed' from editPostUpdate.php with forced success from editPostUpdate.php.
                document.getElementById(idx).innerHTML = propertyID + ' can now be changed';
            //alert(data); //get forced success message from editPostUpdate.php
            } else {
            document.getElementById(idx).innerHTML = propertyID + ' has errors,check,try again';
            }

        }
    });
    }</script></ul>";
//some messages are constructed in PHP objects - nothing to do with this problem
    //make HTML list items of active postings for 3Step countries
    $idMaker = "active" . $rowCount;
    //this syntax is exceptionally picky. It took advice from gurus and hours of trials to get it. It works with the retrievePost function above.
    //test - $propertyFields was added as a function variable. It doesn't work. 
    $error_ListActives = "<li> $propertyID, $storedStreetAddress, $storedCity3
    <button type='button' id='$idMaker' onclick='retrievePost( id, $propertyID, $propertyFields )'>Edit this one</button>
    </li>"; 

请注意,在列表项中,propertyID,storedStreetAddress和storedCity3的变量都在上面的retrievePost函数的注入HTML中工作和显示。它只是$ propertyFields数组不起作用。在POST数据中,Firebug Console显示了适当的TID字符串,以及propertyFields数组的空字段。

当用户通过按钮选择时,我希望将propertyFields数组POST到第二个PHP脚本editPostUpdate.php,如图所示,其中数据数组将用于查询。发生此POST,但它是一个空数组。我尝试了很多东西,包括原始的javascript数组作为连接数据的元素:propertyFields:没有成功。该怎么办?

1 个答案:

答案 0 :(得分:0)

问题根源的线索是“填充一个有效的javascript函数 - 它提供了列表描述,但是不能包含propertyFields数组”那么数组有什么问题?我花了很长时间,但我发现在这种情况下Javascript不能理解字符串数组。我错误地认为字符串会更简单。当我将properTFields数组更改为JSON时,使用json_encode()命令 - bang - 如上所述,代码在第一次尝试时起作用。故事的道德:使用JSON和Javascript。