The use case for us is that we're trying to generate canonical/next/prev links for fastboot rendered pages. Unfortunately, the new router service in ember doesn't serialize values correctly when used with ember-parachute, so you can't just pass values into the this.get('router').urlFor() method.
Now, we're pulling the queryParamsState value and building an object of changed values and passing that into the urlFor method.
Quick attempt at resolving this issue: https://github.com/offirgolan/ember-parachute/issues/41
The use case for us is that we're trying to generate canonical/next/prev links for fastboot rendered pages. Unfortunately, the new router service in ember doesn't serialize values correctly when used with ember-parachute, so you can't just pass values into the
this.get('router').urlFor()
method.Now, we're pulling the
queryParamsState
value and building an object of changed values and passing that into theurlFor
method.