gpt4 book ai didi

javascript - php 页面选项卡未使用 AJAX 加载

转载 作者:行者123 更新时间:2023-11-27 23:58:32 25 4
gpt4 key购买 nike

我正在使用从 codecanyon 获得的选项卡类...基本上我有几个我想显示的选项卡,但所有信息都是 php 文件(不是很大或资源消耗)...

我使用下面的代码来加载页面。在初始加载时,第一页会加载。(加载时它必须访问数据库等),然后我可以浏览到第二页(此时只是 html)。但只要我想回到 php 页面,它就一直加载啊加载……

我无法在库中使用 get 或 post 方法,因为我已经使用 get 方法来传递变量,并且 post 丢弃了 get 方法值...

有什么方法可以查看为什么当 php 代码进入时页面无法加载?

当我检查 chrome 中的控制台时,我确实注意到了这一点(页面加载后就会出现:

http://website/includes/tabs/inc/getcontent.php?filename=%2Fuser_management%2Fuser_profile.php&password=apphptabs 

Failed to load resource: the server responded with a status of 500 (Internal Server Error)`

但我不能 100% 确定是什么原因导致的。因为它最初加载完美......

## *** include tabs class
define ("TABS_DIR", "includes/tabs/");
require_once(TABS_DIR."tabs.class.php");

## *** create tabs object
$tabs = new Tabs();

## *** set form submission type: "get", "post" or "ajax"
$tabs->SetSubmissionType("ajax");

## *** set CSS style
$tabs->SetStyle("grey");

## *** set Tabs caption
//$tabs->SetCaption("ApPHP Tabs v".$tabs->Version());
## *** show debug info - false|true
$tabs->Debug(false);

## *** set mode of displaying child tabs
$tabs->SetChildTabsType("dropdown");

## *** allow refreshing selected tabs
$tabs->AllowRefreshSelectedTabs(false);

## *** add tabs
## Example 1: $tabs->AddTab("Title");
## Example 2: $tabs->AddTab("Title", "text.txt");
## Example 3: $tabs->AddTab("Title", "text.txt", "icon.gif");#1");
$user_profile=$tabs->AddTab("Personal Information", "user_management/user_profile.php");
$permissions=$tabs->AddTab("Permissions", "user_management/permissions.php");

## *** set container's width
$tabs->SetWidth("690px");
$tabs->SetHeight("300px");
//$tabs->SetWidth("100%");
//$tabs->SetWidth("auto");

## *** choose a default tab
$tabs->SetDefaultTab($user_profile);

## *** display tabs
$tabs->Display();

最佳答案

我找到了解决办法

在ajax中加载php文件时出现我使用的相对路径不起作用。

我刚刚将 include('../../functions.php'); 更改为 require_once(__DIR__.'../../functions.php'); 问题立即自行解决。

关于javascript - php 页面选项卡未使用 AJAX 加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32038159/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com