Skip to content

Latest commit

History

History
12 lines (10 loc) 路 419 Bytes

url.md

File metadata and controls

12 lines (10 loc) 路 419 Bytes

url method

FlowRouter.url(path, params, qs);
  • path {String} - Path or Route's name
  • params {Object} - Serialized route parameters, { _id: 'str' }
  • qs {Object} - Serialized query string, { key: 'val' }
  • Returns {String} - Absolute URL using Meteor.absoluteUrl

Further reading