sails.js
नियंत्रकों
खोज…
टिप्पणियों
नियंत्रकों ( एमवीसी में सी ) आपके पाल आवेदन में प्रमुख वस्तुएं हैं जो एक वेब ब्राउज़र, मोबाइल एप्लिकेशन या किसी सर्वर के साथ संचार करने में सक्षम किसी अन्य प्रणाली के अनुरोधों का जवाब देने के लिए जिम्मेदार हैं। वे अक्सर आपके मॉडल और विचारों के बीच एक बिचौलिए का काम करते हैं। कई अनुप्रयोगों के लिए, नियंत्रकों में आपकी परियोजना के व्यावसायिक तर्क शामिल होंगे।
ES2015 सिंटेक्स
'use strict'; // This is an example of a /api/controllers/HomeController.js module.exports = { // This is the index action and the route is mapped via /config/routes.js index(req, res) { // Return a view without view model data // This typically will return the view defined at /views/home/index.<view engine extension> return res.view(); }, foo(req, res) { // Return the 'foo' view with a view model that has a `bar` variable set to the query string variable `foobar` return res.view({ bar: req.param('foobar'), }); }, };
ES.2015 जनरेटर का उपयोग co.js के साथ
'use strict'; const co = require('co'); module.exports = { // This is the index action and the route is mapped via /config/routes.js index(req, res) { co(function* index() { // Return a view without view model data // This typically will return the view defined at /views/home/index.<view engine extension> return res.view(); }).catch(res.negotiate); // Catch any thrown errors and pass the error to the `negotiate` policy. }, foo(req, res) { co(function* foo() { // Get an array of `FooBar` items from the database const items = yield FooBar.find(); // Return the 'foo' view with a view model containing the array of `FooBar` items return res.view({ items, }); }).catch(res.negotiate); // Catch any thrown errors and pass the error to the `negotiate` policy. }, };
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow