蛋糕不烤所有模板
Cake doesn't not bake all templates
我创建了 3 个数据库表如下
CakePHP 的命名约定。当我尝试使用以下命令烘焙代码时,它仅在 'App/src/Template/Worksheets' 中生成 3 个文件,即
'view'、'add' 和 'edit'。
即bin\cake bake all worksheets
没有生成 'index' 文件,只有上面提到的那些。
当我开始开发应用程序时,bake 命令完美无缺地生成了 'index' 文件,完全没有问题。
Cake 不会在控制台中给出任何错误,它只是在没有为 'index' 烘焙模板的情况下运行。
有办法解决这个问题吗?
因此,如果您在控制台中键入此命令,则在烘焙所有其他视图后,您可以创建缺少的视图。即 index.ctp
cake bake template <model> <action>
对于我的问题:
bin\cake bake template worksheets index
这完美无缺。
我创建了 3 个数据库表如下 CakePHP 的命名约定。当我尝试使用以下命令烘焙代码时,它仅在 'App/src/Template/Worksheets' 中生成 3 个文件,即 'view'、'add' 和 'edit'。
即bin\cake bake all worksheets
没有生成 'index' 文件,只有上面提到的那些。 当我开始开发应用程序时,bake 命令完美无缺地生成了 'index' 文件,完全没有问题。
Cake 不会在控制台中给出任何错误,它只是在没有为 'index' 烘焙模板的情况下运行。
有办法解决这个问题吗?
因此,如果您在控制台中键入此命令,则在烘焙所有其他视图后,您可以创建缺少的视图。即 index.ctp
cake bake template <model> <action>
对于我的问题:
bin\cake bake template worksheets index
这完美无缺。