Skip to content

Instantly share code, notes, and snippets.

@mort3za
Last active December 8, 2015 08:47
Show Gist options
  • Save mort3za/34da17b25d97d80d5965 to your computer and use it in GitHub Desktop.
Save mort3za/34da17b25d97d80d5965 to your computer and use it in GitHub Desktop.
Optional parameters in Angular UI Router
// needs ui router 0.2.12+
// ...
var Product: {
url: '^/p/:productId/{productAlias}',
params: {
productAlias: {value: null, squash: true}
}
}
.state('product', Product);
// ...
// This is the results:
// http://example.com/p/12
// http://example.com/p/12/some-product-alias
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment