我正在研究 extjs 4 项目。在这个项目中,我必须在js
和php
文件之间进行通信。所以要从 js 调用 php,我使用的是 Ext.Ajax.request。
var dirs = [];
Ext.Ajax.request(
{
url: 'text.php',
method: 'GET',
success: function(response)
{
dirs = JSON.parse(response.responseText);
},
failure: function(response)
{
alert('server-side failure with status code ' + response.status);
}
});
// Creating dropdown list menu
document.write("<select class='select'>");
for (var i = 0; i < dirs.length; i++)
{
document.write("<option>" + dirs[i] + "</option>");
}
document.write("</select>");
php代码如下:
<?php
$filepath = "scenarios";
$dirs = array();
$files = array();
$scenes = array_diff(scandir($filepath), array('..', '.'));
for ($i = 2; $i < count($scenes)+2; $i++)
{
if (strpos($scenes[$i], '.'))
{
array_push($files, $scenes[$i]);
}
else
{
array_push($dirs, $scenes[$i]);
}
}
if (count($dirs) > 0)
{
echo json_encode($dirs);
}
else
{
echo json_encode("You do nat have any projects. Please create new project.");
}
?>
现在问题出现在我想从结果中生成列表菜单的部分dirs object
。在 firebug DOM dirs = ["google","yahoo"],但在循环中,dirs.length 返回 0???
另外,当我放在alert(dirs.length)
for 循环之前,它显示 0,然后正确生成列表菜单...奇怪????