Skip to content
New issue

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

Query params not available in SSR #29967

Closed
LeVraiSylvain opened this issue Mar 27, 2025 · 1 comment
Closed

Query params not available in SSR #29967

LeVraiSylvain opened this issue Mar 27, 2025 · 1 comment

Comments

@LeVraiSylvain
Copy link

Which @angular/* package(s) are the source of the bug?

Don't known / other

Is this a regression?

Yes

Description

Steps to reproduce:

  1. Create an app called dummyapp using Angular CLI version 19.2.5 with the --ssr option (ng new dummyapp --ssr).

  2. In the app.component.ts, add the following code :

import { Component, OnInit } from '@angular/core';
import { ActivatedRoute, RouterOutlet } from '@angular/router';

@Component({
  selector: 'app-root',
  imports: [RouterOutlet],
  templateUrl: './app.component.html',
  styleUrl: './app.component.scss'
})
export class AppComponent implements OnInit {
  title = 'dummyapp';

/**
 *
 */
constructor(
  private route: ActivatedRoute
) {}

  ngOnInit(): void {
    this.route.queryParams.subscribe(async params => {
     this.title = params['title'];
    });
  }
}
  1. Run ng serve
  2. Start your browser and disable Javascript
  3. Navigate to http://localhost:4200/?title=MyTitle => It should work correcly
  4. Stop ng serve
  5. Run ng build && yarn serve:ssr:dummyapp
  6. Make sure Javascript is still disable in your browser
  7. Navigate to http://localhost:4000/?title=MyTitle => It does not work correcly. The title from the query string is not retrieved.

Image

Please provide a link to a minimal reproduction of the bug

No response

Please provide the exception or error you saw


Please provide the environment you discovered this bug in (run ng version)

Angular CLI: 19.2.5
Node: 22.14.0

Anything else?

No response

@ngbot ngbot bot modified the milestone: needsTriage Mar 27, 2025
@alan-agius4 alan-agius4 transferred this issue from angular/angular Mar 28, 2025
@alan-agius4
Copy link
Collaborator

This behavior is expected because the page is being prerendered when running ng build && yarn serve:ssr:dummyapp. To disable prerendering, set "prerender": false in your angular.json.

@alan-agius4 alan-agius4 closed this as not planned Won't fix, can't repro, duplicate, stale Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants