我有一个完整的LAMP堆栈在Docker中运行。我在本地只能编辑//Utility
const readUserUtility = (id_a)=>{
const currentstore = store.getState();
const returnedArray = currentstore.users.filter((user_object)=>{
return user_object.id === id_a;
})
try{if(returnedArray.length === 0){throw "Array empty";}}catch(error){
console.log(error);
}
console.log(returnedArray);
}
的一个子文件夹,运行容器时将配置Web应用程序的其余部分,本地编辑文件将同步到需要的地方。
Xdebug已安装,我可以使用htdocs
或pugdebug
从主机正常连接到它。在PhpStorm
中,当我开始调试会话时,它首先到达了我无法映射的路径,因此无法从此处继续。
是唯一在本地镜像整个Web应用程序的解决方案吗?
要编辑的本地文件是WordPress plugin,Web应用程序是WordPress。