You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when we make a get request to home page of the app, for example through the browser, the ajax call to get the list of all questions is redundant, because of server side rendering, we have populate the list of question from server,
so how can stop the app to make ajax request when the html is rendered from server ?
The text was updated successfully, but these errors were encountered:
I found the solution . its because of the store.
we should send the store from server to client.
you can do it in a lot of ways. but i think the straight forward way to do it is to pass store through the html.
when we make a get request to home page of the app, for example through the browser, the ajax call to get the list of all questions is redundant, because of server side rendering, we have populate the list of question from server,
so how can stop the app to make ajax request when the html is rendered from server ?
The text was updated successfully, but these errors were encountered: