We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Пусть у нас есть следующее описание роутера:
ns.router.routes = { route: { '/journal/{ts:int=100}/{type:id=any-type}': 'journal' } };
Если вызвать:
ns.router.generateUrl('journal', {type: 'some-type'});
То должен быть сгенерирован URL /journal/100/some-type. Но роутер генерирует URL /journal/some-type, что является ошибкой.
/journal/100/some-type
/journal/some-type
По мотивам собран fail тест: #581
The text was updated successfully, but these errors were encountered:
[ns.router] Роутер не добавляет дефолтные параметры при генерации URL.
a4ab88f
Fix #582
No branches or pull requests
Пусть у нас есть следующее описание роутера:
Если вызвать:
То должен быть сгенерирован URL
/journal/100/some-type
. Но роутер генерирует URL/journal/some-type
, что является ошибкой.По мотивам собран fail тест: #581
The text was updated successfully, but these errors were encountered: