Express-handlebars route parameters to link to the same page2019 Community Moderator ElectionCan I use multiple versions of jQuery on the same page?Specifying a default flatiron-director route (inside element) via polymer core-pages component“Double vision” with HTML5mode, Angular with ui router and ExpressFluxible and Navlink routing errorExpress-handlebars “template merging”Can't get express-handlebars render an HTML pagere-render pug view with expresshistory.replaceState() doesn't trigger a popstate event in Firefox?Express Handlebars layout in layoutExpress-handlebars routing multiple data sets to one page

weren't playing vs didn't play

Good for you! in Russian

Are tamper resistant receptacles really safer?

When traveling to Europe from North America, do I need to purchase a different power strip?

What are some noteworthy "mic-drop" moments in math?

Are there historical instances of the capital of a colonising country being temporarily or permanently shifted to one of its colonies?

Does this video of collapsing warehouse shelves show a real incident?

List elements digit difference sort

Bash script should only kill those instances of another script's that it has launched

PTIJ: Should I kill my computer after installing software?

Do items de-spawn in Diablo?

Recommendation letter by significant other if you worked with them professionally?

They call me Inspector Morse

Can Mathematica be used to create an Artistic 3D extrusion from a 2D image and wrap a line pattern around it?

Vocabulary for giving just numbers, not a full answer

An alternative proof of an application of Hahn-Banach

Is it necessary to separate DC power cables and data cables?

Is "conspicuously missing" or "conspicuously" the subject of this sentence?

Signed and unsigned numbers

NASA's RS-25 Engines shut down time

Hotkey (or other quick way) to insert a keyframe for only one component of a vector-valued property?

In the late 1940’s to early 1950’s what technology was available that could melt a LOT of ice?

Is "history" a male-biased word ("his+story")?

What was the Kree's motivation in Captain Marvel?



Express-handlebars route parameters to link to the same page



2019 Community Moderator ElectionCan I use multiple versions of jQuery on the same page?Specifying a default flatiron-director route (inside element) via polymer core-pages component“Double vision” with HTML5mode, Angular with ui router and ExpressFluxible and Navlink routing errorExpress-handlebars “template merging”Can't get express-handlebars render an HTML pagere-render pug view with expresshistory.replaceState() doesn't trigger a popstate event in Firefox?Express Handlebars layout in layoutExpress-handlebars routing multiple data sets to one page










4















I have an SPA made with express-handlebars.
I need to pass route parameters in the URL so I can pick it up in the subsequent page it leads to and render the details pertaining to that parameter.
for eg.



www.sitename.com/events/1 , www.sitename.com/events/2
1 and 2 will be the event IDs which I will then use to fetch the details of that event.



I need handlebars to render the same eventdetail page for me for both routes as shown above. But it seems to break everything, and the console check showed me that it was trying to go inside a "events" folder and then trying to find all the files within and eventually throwing a 404 page as well.



These are the routes I have right now in my routes.js page.



`
router.get("/events", function(req, res, next)
res.render("events");
);
router.get("/eventdetail", function(req, res, next)
res.render("eventdetail");
);
`


How do I go about with this?










share|improve this question




























    4















    I have an SPA made with express-handlebars.
    I need to pass route parameters in the URL so I can pick it up in the subsequent page it leads to and render the details pertaining to that parameter.
    for eg.



    www.sitename.com/events/1 , www.sitename.com/events/2
    1 and 2 will be the event IDs which I will then use to fetch the details of that event.



    I need handlebars to render the same eventdetail page for me for both routes as shown above. But it seems to break everything, and the console check showed me that it was trying to go inside a "events" folder and then trying to find all the files within and eventually throwing a 404 page as well.



    These are the routes I have right now in my routes.js page.



    `
    router.get("/events", function(req, res, next)
    res.render("events");
    );
    router.get("/eventdetail", function(req, res, next)
    res.render("eventdetail");
    );
    `


    How do I go about with this?










    share|improve this question


























      4












      4








      4








      I have an SPA made with express-handlebars.
      I need to pass route parameters in the URL so I can pick it up in the subsequent page it leads to and render the details pertaining to that parameter.
      for eg.



      www.sitename.com/events/1 , www.sitename.com/events/2
      1 and 2 will be the event IDs which I will then use to fetch the details of that event.



      I need handlebars to render the same eventdetail page for me for both routes as shown above. But it seems to break everything, and the console check showed me that it was trying to go inside a "events" folder and then trying to find all the files within and eventually throwing a 404 page as well.



      These are the routes I have right now in my routes.js page.



      `
      router.get("/events", function(req, res, next)
      res.render("events");
      );
      router.get("/eventdetail", function(req, res, next)
      res.render("eventdetail");
      );
      `


      How do I go about with this?










      share|improve this question
















      I have an SPA made with express-handlebars.
      I need to pass route parameters in the URL so I can pick it up in the subsequent page it leads to and render the details pertaining to that parameter.
      for eg.



      www.sitename.com/events/1 , www.sitename.com/events/2
      1 and 2 will be the event IDs which I will then use to fetch the details of that event.



      I need handlebars to render the same eventdetail page for me for both routes as shown above. But it seems to break everything, and the console check showed me that it was trying to go inside a "events" folder and then trying to find all the files within and eventually throwing a 404 page as well.



      These are the routes I have right now in my routes.js page.



      `
      router.get("/events", function(req, res, next)
      res.render("events");
      );
      router.get("/eventdetail", function(req, res, next)
      res.render("eventdetail");
      );
      `


      How do I go about with this?







      javascript express-handlebars






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 7 at 6:18







      Scary Terry

















      asked Mar 4 at 4:37









      Scary TerryScary Terry

      214




      214






















          1 Answer
          1






          active

          oldest

          votes


















          0














          You have to modify your routes to handle path param passed in url. Currently, express is looking for path which matches events/1 which is not exists in you configuration hence it's throwing 404 error.



          Change your /events route to use path param like below



          router.get("/events/:page", function(req, res, next) 
          // you can access page value here with
          // req.params.page
          // for /events/1, req.params.page will return value "1"
          res.render("events");
          );```





          share|improve this answer


















          • 1





            I did try this before I posted here, but this lead to the entire website breaking because now the server would try to look for all dependencies (all js and css files) in www.sitename/events/1 folder structure. Anyway, i passed the event id as a parameter in the url (www.sitename.com/eventdetail?id=1) cause that seemed to be the simplest, least complicated way of doing it.

            – Scary Terry
            Mar 5 at 4:57










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54976706%2fexpress-handlebars-route-parameters-to-link-to-the-same-page%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          You have to modify your routes to handle path param passed in url. Currently, express is looking for path which matches events/1 which is not exists in you configuration hence it's throwing 404 error.



          Change your /events route to use path param like below



          router.get("/events/:page", function(req, res, next) 
          // you can access page value here with
          // req.params.page
          // for /events/1, req.params.page will return value "1"
          res.render("events");
          );```





          share|improve this answer


















          • 1





            I did try this before I posted here, but this lead to the entire website breaking because now the server would try to look for all dependencies (all js and css files) in www.sitename/events/1 folder structure. Anyway, i passed the event id as a parameter in the url (www.sitename.com/eventdetail?id=1) cause that seemed to be the simplest, least complicated way of doing it.

            – Scary Terry
            Mar 5 at 4:57















          0














          You have to modify your routes to handle path param passed in url. Currently, express is looking for path which matches events/1 which is not exists in you configuration hence it's throwing 404 error.



          Change your /events route to use path param like below



          router.get("/events/:page", function(req, res, next) 
          // you can access page value here with
          // req.params.page
          // for /events/1, req.params.page will return value "1"
          res.render("events");
          );```





          share|improve this answer


















          • 1





            I did try this before I posted here, but this lead to the entire website breaking because now the server would try to look for all dependencies (all js and css files) in www.sitename/events/1 folder structure. Anyway, i passed the event id as a parameter in the url (www.sitename.com/eventdetail?id=1) cause that seemed to be the simplest, least complicated way of doing it.

            – Scary Terry
            Mar 5 at 4:57













          0












          0








          0







          You have to modify your routes to handle path param passed in url. Currently, express is looking for path which matches events/1 which is not exists in you configuration hence it's throwing 404 error.



          Change your /events route to use path param like below



          router.get("/events/:page", function(req, res, next) 
          // you can access page value here with
          // req.params.page
          // for /events/1, req.params.page will return value "1"
          res.render("events");
          );```





          share|improve this answer













          You have to modify your routes to handle path param passed in url. Currently, express is looking for path which matches events/1 which is not exists in you configuration hence it's throwing 404 error.



          Change your /events route to use path param like below



          router.get("/events/:page", function(req, res, next) 
          // you can access page value here with
          // req.params.page
          // for /events/1, req.params.page will return value "1"
          res.render("events");
          );```






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 4 at 8:31









          Vimal BeraVimal Bera

          8,68731842




          8,68731842







          • 1





            I did try this before I posted here, but this lead to the entire website breaking because now the server would try to look for all dependencies (all js and css files) in www.sitename/events/1 folder structure. Anyway, i passed the event id as a parameter in the url (www.sitename.com/eventdetail?id=1) cause that seemed to be the simplest, least complicated way of doing it.

            – Scary Terry
            Mar 5 at 4:57












          • 1





            I did try this before I posted here, but this lead to the entire website breaking because now the server would try to look for all dependencies (all js and css files) in www.sitename/events/1 folder structure. Anyway, i passed the event id as a parameter in the url (www.sitename.com/eventdetail?id=1) cause that seemed to be the simplest, least complicated way of doing it.

            – Scary Terry
            Mar 5 at 4:57







          1




          1





          I did try this before I posted here, but this lead to the entire website breaking because now the server would try to look for all dependencies (all js and css files) in www.sitename/events/1 folder structure. Anyway, i passed the event id as a parameter in the url (www.sitename.com/eventdetail?id=1) cause that seemed to be the simplest, least complicated way of doing it.

          – Scary Terry
          Mar 5 at 4:57





          I did try this before I posted here, but this lead to the entire website breaking because now the server would try to look for all dependencies (all js and css files) in www.sitename/events/1 folder structure. Anyway, i passed the event id as a parameter in the url (www.sitename.com/eventdetail?id=1) cause that seemed to be the simplest, least complicated way of doing it.

          – Scary Terry
          Mar 5 at 4:57



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54976706%2fexpress-handlebars-route-parameters-to-link-to-the-same-page%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

          Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

          How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page