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
Then I got 'lithium\net\http\RoutingException' with message 'No parameter match found for URL xxxx'.
The problem cause by pass $request->params to Router::match(), and $request->params have extra field named 'library', which undeclared in route rule configuration.
Possible solution:
When compiling route rule, append library field to Route::$_match or do more check?
The text was updated successfully, but these errors were encountered:
recently I create a library with form, I configured route rules like:
In target template, I call:
Then I got 'lithium\net\http\RoutingException' with message 'No parameter match found for URL xxxx'.
The problem cause by pass $request->params to Router::match(), and $request->params have extra field named 'library', which undeclared in route rule configuration.
Possible solution:
When compiling route rule, append library field to Route::$_match or do more check?
The text was updated successfully, but these errors were encountered: