Closed h4 closed 9 years ago
Если вызвать uri.addParam('search[direction][]', []) (например, через location.change({}), то строковое представление будет http://test.com/index.html?search[direction][] вместо ожидаемого http://test.com/index.html?search%5Bdirection%5D%5B%5D.
uri.addParam('search[direction][]', [])
http://test.com/index.html?search[direction][]
http://test.com/index.html?search%5Bdirection%5D%5B%5D
Если вызвать
uri.addParam('search[direction][]', [])
(например, через location.change({}), то строковое представление будетhttp://test.com/index.html?search[direction][]
вместо ожидаемогоhttp://test.com/index.html?search%5Bdirection%5D%5B%5D
.