iron-router Questions
1
Solved
My dilemma is that I would like to pass multiple object properties to an iron:router route in Meteor. The reasoning is that I would like to pass it a property to name my url with and a property to ...
Embargo asked 10/11, 2014 at 19:52
1
I've got the following route configuration: https://gist.github.com/chriswessels/76a64c421170095eb871
I'm getting the following error when attempting to load a route:
Exception in defer callback:...
Rochet asked 8/10, 2014 at 11:39
1
Solved
I am trying to pass POST data to an Iron Router route from outside meteor but it doesn't work. The request body is empty.
I have tried outputting the request body to check if the data were present...
Cask asked 4/11, 2014 at 19:23
1
Solved
I upgraded to Meteor 1.0, installed the latest iron-router package, tried to run my app and got this nice warning in my console log:
Route dispatch never rendered. Did you forget to call this.ne...
Gunsmith asked 1/11, 2014 at 20:15
1
Solved
Is anyone else getting the following error from Iron-Router since upgrading Meteor to version 1.0?
Please post here if you know how to resolve this issue.
Route dispatch never rendered. Did you...
Emersion asked 29/10, 2014 at 12:2
1
Solved
Given something like
Router.route('/blah/:stuff', function () {
// respond with a redirect
}, {where: 'server'});
How to do the redirect? is there something built in? or do I have to craft it ...
Kristie asked 29/10, 2014 at 9:9
1
Solved
As mentioned above, what is the differences between Router.map and Router.route in using meteor iron-router package?
In this tutorial, using 'Router.route'.
But in this tutorial, using 'Router.map'...
Putrefy asked 10/10, 2014 at 1:33
2
I would use Meteor.user() in data iron-router, but this is undefined at start...
I'm trying with:
waitOn: function() {
return curretUserHandle;
},
data: function() {
// access to Meteor.user()....
Pliske asked 16/8, 2014 at 8:0
2
Solved
Using Meteor 0.9.3 and iron:router 1.0.0-pre2, this error shows on the console even though iron:layout was installed, see below:
willems-mini:iron willem$ meteor add iron:router@=1.0.0-pre2
added ...
Elkin asked 30/9, 2014 at 12:38
1
Solved
I'm struggling to create a user profile page, using Iron Router, which is located at localhost:3000/:username. The profile page should have the following characteristics:
Public view - anyone can...
Coercion asked 28/9, 2014 at 11:29
2
Solved
In my Meteor app I have some complex page animations that require a few seconds to complete (instructive animations take priority over page transition speed).
There's an out state and an in state...
Puggree asked 23/7, 2014 at 15:57
2
Everything works fine except after doing meteor update 0.8.3 and came up with that error.
Any kind of help would be appreciated.
Marou asked 30/7, 2014 at 3:2
1
Solved
I have one general {{>yield}} for iron-router in a layout file which renders my pages, which are templates.
In one of my pages, I have a side menu and according to the selection in this menu, I w...
Mcgruter asked 27/8, 2014 at 11:54
2
Solved
I have email hooked up on my dev box, and get a verification email after creating a user. I can click on the included link, and it will bring me to my main page.
1) Clicking on the link seems to d...
Tallyman asked 1/10, 2013 at 9:21
1
I've run into an incredibly ridiculous bug in my meteor app. Essentially, I have a particular page, that renders a few templates, that crashes Safari on a Mac, and only Safari (and only when the co...
Gobang asked 8/8, 2014 at 0:40
4
Solved
I've added iron-router to my app to handle routing between the home page, an about page and the main page of the app which is a map
After adding iron-router with meteorite,
I wrote a router.js fil...
Louisville asked 22/1, 2014 at 23:14
1
Solved
Example:
I am writing a Meteor app that deals with a list of blog posts. All blog posts are stored in a collection called 'Posts'. I use Iron Router for routing.
I want to show the user a list of...
Cele asked 19/8, 2014 at 13:35
1
I've got a link that I want the user to press. When they press it, the router will go to a certain template and then run Smoothscroll.js code to animate and scroll down to the anchor tag.
//When ...
Nazarius asked 14/8, 2014 at 6:59
1
Solved
When I visit a route in my browser I expect Iron Router to call onBeforeAction once before loading the route. But it looks like it is being called 3 times when first loading the route.
This is an...
Colenecoleopteran asked 2/8, 2014 at 21:25
2
For a server-only route, How can I get the current user.
Please note this is a route that looks like:
this.route('report_access', {
path: '/report/:humanId?/:reportKey',
where: 'server',
acti...
Tinny asked 23/4, 2014 at 18:39
1
Solved
I have two meteor collections with a one-to-many relationship: buildings and spaces
On my building page, I want to show the spaces related to the building.
For now, I did it this way:
buildingsR...
Sanguinolent asked 13/7, 2014 at 16:56
1
I am looking for a solution that iron-router is waiting for a successfully find method on my collection before rendering.
My route looks like this:
this.route('business', {
path : '/business/:ty...
Dazzle asked 13/4, 2014 at 2:26
2
Solved
I have been working on an application using a comment function. That results in having to subscribe to both a collection which the comments are made on and the comments collection itself. Now it lo...
Barefaced asked 8/4, 2014 at 14:50
2
Solved
Using Meteor Iron-Router how can I either render data as JSON or simply display it "raw" (without a layout template)
Essentially I want to be able to do something like:
this.route('rawdata', {
p...
Theater asked 7/4, 2014 at 14:50
2
Solved
When I upgrade Iron Router to blaze integration branch, I began receiving this warning:
"You called this.stop() inside a hook or your action function but you should use pause() now instead"
Chr...
Overdone asked 1/3, 2014 at 12:47
© 2022 - 2024 — McMap. All rights reserved.