• <bdo id='2vSoY'></bdo><ul id='2vSoY'></ul>

      1. <tfoot id='2vSoY'></tfoot>
      2. <legend id='2vSoY'><style id='2vSoY'><dir id='2vSoY'><q id='2vSoY'></q></dir></style></legend>
      3. <small id='2vSoY'></small><noframes id='2vSoY'>

        <i id='2vSoY'><tr id='2vSoY'><dt id='2vSoY'><q id='2vSoY'><span id='2vSoY'><b id='2vSoY'><form id='2vSoY'><ins id='2vSoY'></ins><ul id='2vSoY'></ul><sub id='2vSoY'></sub></form><legend id='2vSoY'></legend><bdo id='2vSoY'><pre id='2vSoY'><center id='2vSoY'></center></pre></bdo></b><th id='2vSoY'></th></span></q></dt></tr></i><div id='2vSoY'><tfoot id='2vSoY'></tfoot><dl id='2vSoY'><fieldset id='2vSoY'></fieldset></dl></div>

        Node.js:不同文件中的配置和路由

        Node.js: Configuration and routes in a different file(Node.js:不同文件中的配置和路由)

        <tfoot id='cJL3T'></tfoot>
          <tbody id='cJL3T'></tbody>
          • <i id='cJL3T'><tr id='cJL3T'><dt id='cJL3T'><q id='cJL3T'><span id='cJL3T'><b id='cJL3T'><form id='cJL3T'><ins id='cJL3T'></ins><ul id='cJL3T'></ul><sub id='cJL3T'></sub></form><legend id='cJL3T'></legend><bdo id='cJL3T'><pre id='cJL3T'><center id='cJL3T'></center></pre></bdo></b><th id='cJL3T'></th></span></q></dt></tr></i><div id='cJL3T'><tfoot id='cJL3T'></tfoot><dl id='cJL3T'><fieldset id='cJL3T'></fieldset></dl></div>

              <small id='cJL3T'></small><noframes id='cJL3T'>

              <legend id='cJL3T'><style id='cJL3T'><dir id='cJL3T'><q id='cJL3T'></q></dir></style></legend>
                <bdo id='cJL3T'></bdo><ul id='cJL3T'></ul>
                  本文介绍了Node.js:不同文件中的配置和路由的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在启动一个新的 Node.js 应用程序,这一次,我试图正确地组织代码,而不是将所有内容都放在同一个文件中.

                  I am starting a new Node.js app and this time, I'm trying to organize the code correctly instead of having everything in the same file.

                  我现在在 server.coffee 上只有一个简单的设置:

                  I only have a simple setup now at server.coffee:

                  express = require 'express'
                  app = module.exports = express.createServer()
                  
                  ## CONFIGURATION ##
                  
                  app.configure () ->
                   app.set 'views', __dirname + '/views'
                   app.set 'view engine', 'jade'
                   app.use express.bodyParser()
                   app.use express.logger('dev')
                   app.use express.profiler()
                   app.use express.methodOverride()
                   app.use app.router
                   app.use express.static(__dirname + '/public')
                  
                  app.configure 'development', () ->
                   app.use express.errorHandler({dumpExceptions: true, showStack: true})
                  
                  app.configure 'production', () ->
                   app.use express.errorHandler()
                  
                  app.get '/', (req,res) ->
                    res.render 'index'
                      title: 'Express'
                  
                  ## SERVER ##
                  port = process.env.PORT || 3000 
                  
                  app.listen port, () ->
                    console.log "Listening on port" + port
                  

                  我对这个简单的代码有一些疑问,我知道所有答案都取决于开发人员,但我真的想把它做对:

                  I have some questions regarding that simple code and I know that all the answers depend on the developer but I really want to do it right:

                  • server.js 文件应该比 app.listen 多吗?究竟应该有什么?
                  • 不应该所有配置都在与路由不同的文件中吗?如何在运行 server.coffee 时将 app.get 删除到其他文件并使其工作?
                  • 我在 Hubot 等许多应用程序中看到的 index.coffee 究竟应该包含什么?
                  • Should the server.js file have more than the app.listen? What should be there exactly?
                  • Shouldn't all the configurations be in a different file than the routes? How can I remove the app.get to other file and make them work when I run the server.coffee?
                  • What exactly should contain the index.coffee that I see in a lot of apps like Hubot?

                  我希望有人能给我一个取决于"以外的答案.

                  I hope someone can give me an answer other than "it depends".

                  推荐答案

                  您可以利用 require,只需将 app var 作为参数传递给方法.它不是最漂亮的语法,在 CoffeeScript 中也不是,但你应该明白.

                  You can leverage require, and simply pass the app var in as a parameter to a method. It's not the prettiest syntax, nor is it in CoffeeScript, but you should get the idea.

                  module.exports = function (app) {
                      // set up the routes themselves
                      app.get("/", function (req, res) {
                          // do stuff
                      });
                  };
                  

                  app.js

                  require("./routes")(app);
                  

                  如果您想更进一步,我会将路线分成更小的组,并放在它自己的子文件夹中.(例如:routes/auth.js 用于登录/注销,routes/main.js 用于 home/about/contact 等)

                  If you want to take it a step further, I separate my routes into smaller groups, and in it's own subfolder. (like: routes/auth.js for login/logout, routes/main.js for home/about/contact and so on)

                  // export a function that accepts `app` as a param
                  module.exports = function (app) {
                      require("./main")(app);
                      // add new lines for each other module, or use an array with a forEach
                  };
                  

                  (将之前的 routes.js 重命名为 routes/main.js,源本身保持不变)

                  (rename routes.js from before as routes/main.js, the source itself remains the same)

                  这篇关于Node.js:不同文件中的配置和路由的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
                  quot;Each child in an array should have a unique key propquot; only on first time render of page(“数组中的每个孩子都应该有一个唯一的 key prop仅在第一次呈现页面时)
                  Rails 3.1 ajax:success handling(Rails 3.1 ajax:成功处理)
                  CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
                  Ordinals in words javascript(javascript中的序数)
                  getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)
                      <tbody id='TrMBm'></tbody>

                  • <legend id='TrMBm'><style id='TrMBm'><dir id='TrMBm'><q id='TrMBm'></q></dir></style></legend>
                    <i id='TrMBm'><tr id='TrMBm'><dt id='TrMBm'><q id='TrMBm'><span id='TrMBm'><b id='TrMBm'><form id='TrMBm'><ins id='TrMBm'></ins><ul id='TrMBm'></ul><sub id='TrMBm'></sub></form><legend id='TrMBm'></legend><bdo id='TrMBm'><pre id='TrMBm'><center id='TrMBm'></center></pre></bdo></b><th id='TrMBm'></th></span></q></dt></tr></i><div id='TrMBm'><tfoot id='TrMBm'></tfoot><dl id='TrMBm'><fieldset id='TrMBm'></fieldset></dl></div>
                      <bdo id='TrMBm'></bdo><ul id='TrMBm'></ul>

                      <small id='TrMBm'></small><noframes id='TrMBm'>

                      • <tfoot id='TrMBm'></tfoot>