single-page-application Questions
1
Solved
I am currently using Angular + nodejs as my main tech stack...
I am interested in Vue, had a few simple projects with that, and saw a few videos about Nuxt3.
Does Nuxt3 support SPA applications (wi...
Victoriavictorian asked 12/10, 2022 at 8:16
4
I am trying to make a single-page application in Next.js, but I am starting to think this is not possible. Can anyone show me how?
My first attempt was to use a HashRouter:
<HashRouter>
<...
Renshaw asked 25/12, 2019 at 6:39
2
Is there a way in which a web manifest can be localised? i.e. having multiple translations of name, description etc...
I have thought of a couple of potential solutions but they each have pretty b...
Anaemic asked 2/9, 2019 at 23:7
3
Solved
All help articles on this error for Angular say to make sure one has injected 'Router' like this:
constructor(router: Router....
Which I have done.
I'm unsure what else to do. I have to fix this be...
Centralize asked 23/5, 2018 at 12:58
3
Solved
I have been researching how best to store authentication tokens in a Single Page Application (SPA). There is some existing debate about this topic on SO but as far as I can see, none offer concrete...
Miracle asked 2/4, 2022 at 23:22
9
Solved
I can get this tutorial to work in a new project, but not in my existing project.
My project is an ASP.Net MVC 4 web application with the following attribute in the web.config file:
<appSettin...
Oberstone asked 2/7, 2013 at 9:29
2
Solved
I am using django-easy-pjax for making a Single-Page-Application:
base.html:
{% load staticfiles %}
<script type="text/javascript" src="{% static '/static/js/jquery.js' %}"></script>
...
Stralka asked 19/8, 2014 at 21:18
7
Solved
if i put an image in "storage/app/public/img/logo.png" and execute:
$ php artisan storage:link
How i get that logo.png in vue component?
<img src="storage/app/public/img/logo.png">
The...
Whitethorn asked 19/3, 2019 at 22:10
4
I'm trying to figure out how to implement a straightforward condional operation into an observable.
this.deactivate$
.pipe(
filter((canDeactivate) => !canDeactivate),
switchMap(() => Obse...
Headwork asked 4/6, 2019 at 15:8
3
So the question is if it is possible to split a React app into two different separate apps hosted on two different hosts, where the app A is a kind of a frame which controls the app B and C in the ...
Erna asked 8/5, 2018 at 12:44
6
Solved
The following typescript code will always open in the current browser tab
navigate($data: menuItem, $event: JQueryEventObject) {
//...
let a = $event.currentTarget as HTMLAnchorElement;
router....
Lapidary asked 8/1, 2017 at 9:27
12
I tried to update the angular CLI following this, but now I can't run my app. When I try to run the command ng serve, it gives me this error:
Could not find the implementation for builder @a...
Rikki asked 16/6, 2019 at 23:58
2
Solved
I am looking into React framework Next.js to see if it is best match as SPA for my next application where ASP.NET Core will be backend. I have used create-react-app in the past so wanted to compare...
Tiepolo asked 14/7, 2021 at 3:13
3
Solved
I'm hosting an SPA on firebase where almost all paths get rewritten to index.html. I'm using webpack hash based cache busting, so I want to always prevent caching of my index.html but not any other...
Bourassa asked 2/2, 2018 at 19:42
5
I often hear and see posts regarding react is single page app but never understood what is SPA and many say that it doesn't reload the pages but i didn't understood why so could you guys please exp...
Chorus asked 23/6, 2020 at 7:36
3
It's possible to retrieve current state from a SPA (made on frameworks like Angular, React, etc)?
By current sate I meant a snapshot/save/export of all current HTML elements, as well styles/images...
Attorneyatlaw asked 11/9, 2019 at 10:53
2
Solved
I saw a few questions like this around (like this one), but none of them tackle the problem specifically.
So Google is now supporting SPAs and most web browsers do HTML5 pushState.
My AngularJS...
Karns asked 19/5, 2016 at 21:21
2
Solved
I have an SPA application derived from the Identity Platform sample that originally calls a Graph API.
I've changed the endpoint to call a local API.
The SPA uses Azure AD for authentication.
Th...
Erubescence asked 14/2, 2020 at 0:22
2
I'm working in a SPA in React that doesn't use React Router to create any Routes; I don't need to allow users to navigate to specific pages. (Think multi-page questionnaire, to be filled in sequent...
Northern asked 21/5, 2020 at 16:35
12
Solved
This is an MVC 4 app using the Hot Towel SPA template. Whenever I change anything in the HTML and/or javascript the only way I can get the new code to display is to clear the browser cache. F5, cnt...
Sinfonietta asked 26/3, 2013 at 20:10
2
I have a simple frontend application made using Angular. All routings are handled by Angular so I want Spring boot to forward all page traffics to "/" so angular routing can handle them.
...
Amperage asked 17/2, 2022 at 15:7
4
I am currently starting with Angular and MSAL and I cannot figure out how to achieve the following:
When the user access the WebApp, the Microsoft Login should appear (via Azure AD)
After successf...
Hastie asked 1/7, 2020 at 14:46
1
Solved
I have created an Angular application which uses lazy loading and the standard angular routing set up and this set up works well when I run the application locally. But when I try to serve it from ...
Ling asked 5/5, 2021 at 6:11
4
I am using Laravel with default integration of Vue (Not separate project using Vue CLI). I'm trying to authenticate a user but it always shows 419 error. I have included the csrf token to the Axios...
Grayback asked 21/8, 2020 at 17:18
2
Solved
What are the conventions for providing publicly accessible URLs for resources that are managed via a single page application? I think this is an architectural design question, but I anticipate deve...
Ciscaucasia asked 6/5, 2016 at 22:55
© 2022 - 2024 — McMap. All rights reserved.