I'm planning to organize my controllers in sails using subfolder but I'm not sure how to do it. When I tried using like admin/PageController.js and connect it with the route I keep getting a 404 error.
You can definitely do this. The trick is, the controller identity is its path, in your case admin/PageController
. So a custom route in config/routes.js
would be something like:
'GET /admin/page/foo': 'admin/PageController.foo'
The great thing is, automatic actions still work, so if you have an index
action in the controller then browsing to /admin/page
will automatically run it.
You can also create controllers like this with sails generate controller admin/page
.
Since commit 8e57d61 you can do this to get blueprint
routes and functionality on nested controllers, assuming there is an AdminPage
model in your project:
// api/controllers/admin/PageController.js
module.exports = {
_config: {
model: 'adminpage'
}
}
or this:
// config/routes.js
module.exports.routes = {
'admin/page': {
model: 'adminpage'
}
}
Your options
Defining explicit routes to your grouped controllers in config/routes.js
.
Look at Scott Gress' answer for more details.
(If you are a bit adventurous) As i had the exact same requirement for a project of mine I created a Pull Request on Sails that allows you to override the model - controller association. You could install it via
npm install -g git://github.com/marionebl/sails.git#override-controller-model
Assuming it is the api/models/Page.js
model you want the blueprint methods for on api/controllers/admin/PageController.js
you then could do:
// api/controllers/admin/PageController.js
...
module.exports = {
_config: {
model: 'page'
}
}
Explanation
While generating/creating grouped controllers like this is perfectly valid an possible, you will not get the default blueprint routes you'd expect for controllers accompanied by models with the same identity.
E.g. api/controllers/UserController.js
and api/models/User.js
share the same identity user
, thus the blueprint routes are mounted if they are enabled in config/blueprints.js
.
In fact at the moment it is not possible to group models into subfolders in a valid way. This means you won't be able to create a model that matches the identity admin/page
of your controller api/controllers/admin/PageController.js
- the blueprint routes are not mounted for PageController
.
The source responsible for this behavior can be inspected on Github.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With