You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Router specific language support for the path syntax.
This really depends on how the functions will be executed.
{// Here is an example of the path syntax.route: 'titles[{integers}].name',get: function(route){varids=route[1];
...
},// Another possible approach where we allow for named syntax.route: 'titles[{integers:ids}].name',get: function(route){varids=route.ids;
...
},// another possible answer by applying the arguments.// this could be weird with set | callroute: 'titles[{integers}].name',get: function(titles,ids,name|){
...
}}
So before finishing this feature, moving forward with style is needed.
The text was updated successfully, but these errors were encountered:
Router specific language support for the path syntax.
This really depends on how the functions will be executed.
So before finishing this feature, moving forward with style is needed.
The text was updated successfully, but these errors were encountered: