views.html.helper.javascriptRouter_Scope0
Generates a Javascript object that lets you refer to your application's routes in Javascript code
Generates a Javascript object that lets you refer to your application's routes in Javascript code
Example:
@javascriptRouter("jsRoutes")(
routes.javascript.Users.list,
routes.javascript.Application.index
)
You can access your routes in JavaScript without hardcoded URL's, e.g. assuming jQuery's ajax function:
$.ajax(jsRoutes.controllers.Users.list()).done( /* */ ).fail( /* */ )
Each action in the generated object also has the following properties: * *type*: HTTP method * *url*: the url to be used
The javascript object name.
Set of routes to include in this javascript router.