我在 VS Code 中使用 Intelephense 完成代码。效果很好。但是路径完成不正确。当我尝试获取图片的路径时,它会显示错误的图片选择。
像这样:<img src="./images/picture.jpg">
但它应该看起来像这样:<img src="./images/myPicture.jpg">
看起来它沿着树的一个文件夹向下移动。
|
|--myFolder <Workspace>
| |--images
| | \--myPicture.jpg
| |
| \--index.php
|
|--images
| \--picture.jpg <wrong picture>
|
|--index.php
我在 myFolder 中重命名了 index.php,然后${workspaceFolder}
在 Document Root 中使用,但没有任何机会!我在网上找不到任何关于这个问题的信息。
有人知道吗?这真的很烦人。