Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I am having an issue with my Angular application, with ASP.NET backend. As the image shows I am getting duplicate content being downloaded due to page redirects related to Auth. I am using Adal.js to get tokens and when it redirects back to root it re-downloads the content and doesn't clear existing content.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 days ago.
Improve this question
My website is in React JS. I want to show a toast like the one on Linkedin.
When a user visits my website, I want to show a message to the user for better experience.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
In my project i use "tailwindcss". I don't have any error but my project don't load. Just website loading and it's all. I give my github repo instead code, beacause i don't know, where problem. I hope, i can write links
Project - https://github.com/kirilchistov/react-movies
Problem:
there is a loop in you header file. for the default path <popular/> is called which calls <header/> which again calls <popular/>. you should do all the route management in the app.jsx file.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
i want the 2 skin shown in the pictures to be removed and to navigate directly to the user and password skin for authentication. Could any one help me out on how to implement it?
This is the 1st skin(the login page)
This is the 2nd skin which am trying to remove
This is the page i want to navigate to from the 1st login skin
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Is there any way to store the data without using the database?
Not really no. You could use the localStorage/SessionStorage or IndexedDB for example. But all of these things can be cleared by the user.
Also when he is using an incognito session, the data will also be wiped when he closes the browser.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to set default routing for site.
Reason I do this, I want to direct to page not found (page 404) if user typing wrong link or that link user typing not match in routing defined.
#not found
'*notFound' : 'notFound'
This have to be within last router object if there are multiple route objects and have be the last route option of that route object. Otherwise this will redirect all pages below this('*notFound': 'notFound') to 'notFound'.