NativeScript + Angular Navigation context
问题 i'm trying to navigate between a list to a details page. Since i've already fetched everything in my list component i'd like to pass the JSON to the details page so that i've already everything I need to render the component. I tried many things this._router.navigate(['details', JSON.stringify(item)]) // seems to truncate the JSON this._router.navigate(['details', item]) // raises an Cannot match any routes Then i tried to remove the :item url parameter from the route definition and was