-1

我有一个带有块列表的 Javascript 数组。这个数组可能会改变他的长度。我必须从 PHP 访问它,因为我必须在我的数据库中执行一些操作。问题是这个数组的长度可能会改变。这是代码:

<html>
<head>
</head>
<body>
<script type='text/javascript'>
  var blocks = [
    { w: 500, h: 600 },
    { w: 300, h: 200 },
    { w: 150, h: 150 },
    { w: 150, h: 150 },
    { w: 200, h: 250 },
    { w: 100, h: 250 }
  ];

  order_blocks(blocks); //blocks are ordered and can be added new blocks

  //Next code is only to test
  for(var n = 0 ; n < blocks.length ; n++) {
    var block = blocks[n];
    if (block.fit) {
        var str1 = "Block " + (n+1) + ": (" + block.w + "," + block.h + ")";
        document.write(str1);
    }
  }
</script>
<?php
    if (!isset($_POST[numblocks]))
    {
        echo '<form action="'.$_SERVER[PHP_SELF].'" method=post name=pass>
                    <input type=hidden name=numblocks>
                    <input type=hidden name=block1_w>
                    <input type=hidden name=block1_h>
            </form>';
        echo '<script languaje="JavaScript">
                    document.pass.numblocks.value=blocks.length;
                    document.pass.block1_w.value=blocks[0].w;
                    document.pass.block1_h.value=blocks[0].h;
                    document.pass.submit();
            </script>';   
    }     
    echo '<br><br>There are '.$_POST["numblocks"].' Blocks<br>';
    echo 'Block 1 ('.$_POST["block1_w"].','.$_POST["block1_h"].')<br>';
?>
</body>
</html>

过程是:

  1. Javascript:我创建数组块并应用 order_blocks。
  2. PHP:我使用 POST 方法传递 Javascript 变量。

在代码中,您可以看到我正确传递了数组的第一个元素,但我应该遍历数组。

4

1 回答 1

0

替换这个:

echo '<form action="'.$_SERVER[PHP_SELF].'" method=post name=pass>
                <input type=hidden name=numblocks>
                <input type=hidden name=block1_w>
                <input type=hidden name=block1_h>
        </form>';
echo '<script languaje="JavaScript">
                document.pass.numblocks.value=blocks.length;
                document.pass.block1_w.value=blocks[0].w;
                document.pass.block1_h.value=blocks[0].h;
                document.pass.submit();
        </script>';   

有了这个(应该工作):

echo '<form action="'.$_SERVER[PHP_SELF].'" method=post name=pass>
                <input type=hidden name="numblocks">
                <input type=hidden name="block1_w[]">
                <input type=hidden name="block1_h[]">
        </form>';
echo '<script language="text/javascript">
            for(var i = 0; i < blocks.length; i++) {
                document.pass.numblocks.value=blocks.length;
                document.pass.block1_w[i].value=blocks[i].w;
                document.pass.block1_h[i].value=blocks[i].h;

            }
        </script>';   
于 2013-09-26T08:38:55.823 回答