改文件名,怎么办?
changing file names, how to?
我按照这种方法创建了一些表格:
铁g:templatecars/create_car
并创建了以下文件:
create_car.css
create_car.html
create_car.js
简单的问题 - 如果我想更改文件的名称,我还需要更新哪些地方才能使我的更改与应用程序的其余部分保持同步?
谢谢!
马克
您不会因为更改文件名而失去同步。
根据文档,唯一会改变的是文件加载顺序:
HTML template files are always loaded before everything else.
Files beginning with main. are loaded last
Files inside any lib/ directory are loaded next
Files with deeper paths are loaded next
Files are then loaded in alphabetical order of the entire path
根据你的情况,应该不会有什么问题,你可以测试一下。
我按照这种方法创建了一些表格:
铁g:templatecars/create_car
并创建了以下文件:
create_car.css
create_car.html
create_car.js
简单的问题 - 如果我想更改文件的名称,我还需要更新哪些地方才能使我的更改与应用程序的其余部分保持同步?
谢谢!
马克
您不会因为更改文件名而失去同步。
根据文档,唯一会改变的是文件加载顺序:
HTML template files are always loaded before everything else.
Files beginning with main. are loaded last
Files inside any lib/ directory are loaded next
Files with deeper paths are loaded next
Files are then loaded in alphabetical order of the entire path
根据你的情况,应该不会有什么问题,你可以测试一下。