我试图将相同的connect.php文件作为nav.php文件的一部分包含在多个不同的目录和目录深度中,并使用通用的“动态”替代包含路径返回到connect.php文件中网站根文件夹,例如。
www.mywebsite.com/shop/shoes/sandals/index.php
和
www.mywebsite.com/shop/shoes/sandals/index.php
等
将connect.php文件放在根目录
中www.mywebsite.com/connect.php
我目前在nav.php中使用的代码(包含在用户可以访问的所有页面和目录中)如下所示。
<?php
include '../../connect.php';
?>
然而,这显然不适用于像
这样的目录路径www.mywebsite.com/shop/shoes/sandals/index.php
我以前没有经验使用php的绝对路径使多个目录路径可以访问单个connect.php文件。 但是关于这个问题的一些指导会非常有帮助。 感谢
答案 0 :(得分:1)
您可以尝试使用类似
的内容class Component extends React.Component {
...
render() {
const { username, password } = this.props;
return (
...
login(username, password)); // connect binds the AC to dispatch for convenience.
...
);
}
}
希望这有帮助!