我创建文件夹,然后添加文件,例如
folder: orders
files : view.php, add_update.php, invoice.php
Uri becomes: orders/view, orders/add_update, orders/invoice
另一个例子
folder: user
files : view.php (view profile), add_update.php (add, update users)
Uri : users/view, users/add_update
以及更多具有类似结构的文件夹和文件。它工作正常,但在编辑器(netbeans)中,我只在选项卡中看到文件的名称,所以如果我打开order/view.php, users/view.php, files/view.php
我看到view.php, view.php, view.php
......我当然可以将鼠标悬停在上面并查看完整路径,但我想知道你们是否遵循更好的文件命名模式。上传文件时有时会出错,orders/view.php or users/view.php
因为文件结构看起来很相似。你有什么建议?
PS:这些是控制器而不是 CI 视图文件。我有这种结构的原因之一是有有意义的 uri。我只是在 CI 中添加了标签,但我是否使用 CI 并不重要。