我有一个非常奇怪的问题,我想知道是否有人也遇到过这个问题? 我在项目中使用原型库并使用Ajax加载页面,如下所示:
function load_cms_content (id,menu_name,draft_status){
var params='?action=cms_content&id='+id+'&rand='+Math.random()+"&draft_status="+draft_status;
new Ajax.Updater('box_wrapper', 'index.php', {asynchronous:true, method:'POST', parameters:params, evalScripts:true});
}
在我的测试服务器上,一切正常,但在“实时”服务器上它的工作方式不同。
脚本返回它请求的页面而不是我请求的php页面。链接和参数是正确的。我从来没有遇到过这个问题,我已经在几台服务器上安装了我的cms。 看起来这与服务器配置有关。 有人有想法吗?