single-page-application Questions
6
I've been working on how to make a SPA crawlable by google based on google's instructions. Even though there are quite a few general explanations I couldn't find anywhere a more thorough step-by-st...
Willett asked 30/8, 2013 at 10:5
3
I'm building a single-page application with AngularJS. I'm considering 2 approaches to handling a long idle period wherein the server-side session expires.
Approach A: Detect during AJAX, Relogin,...
Birefringence asked 17/12, 2014 at 15:11
0
I have a Vue site hosted on Azure Static Web Apps. It does not utilize the supported API endpoint via Azure Functions. Our backend APIs are hosted on App Service instead and they are often put in a...
Edifice asked 25/11, 2021 at 13:22
6
Solved
I need to refresh data of angular component each 30 seconds. I use simple setInterval:
this.interval = setInterval(() => {
this.refresh(); // api call
}, 10000);
However, this is incorrect...
Duleba asked 27/11, 2018 at 7:45
4
I have this Blazor SPA I have published to IIS on a webhotel. My problem is that Chrome is somehow caching my Blazor assembly so no matter how many times I redeploy I still get the old dll. I can s...
Scintillator asked 10/3, 2020 at 7:54
3
Solved
I have an API that has routes managed by MVC.
On top of that i want to build a SPA with react.
However the routes I build from inside my react app cannot be reached, i get an 404 from ISS, here us ...
Pleurodynia asked 2/8, 2016 at 12:17
2
Solved
We have an Angular SPA that is authorized by OIDC using the Implicit Flow. We use Keycloak as our authorization server. The Access Token has a short lifespan and is refreshed regularly via a hidden...
Barnet asked 15/5, 2020 at 9:19
3
How can I implement Laravel's Email Verification on a Vue SPA with Vue Router?
So far I have tried to handle email verification by altering the VerificationController verify and resend methods. I ...
Petua asked 8/8, 2019 at 14:16
8
Solved
I wanted to understand the overall architecture for designing single page application (mainly through JavaScript)
Let's say I have a login page (Usernam/Password) and on successful authentication,...
Protection asked 6/3, 2013 at 11:19
9
I'm using a Vue.js computed property but am running into an issue: The computed method IS being called at the correct times, but the value returned by the computed method is being ignored!
My metho...
Write asked 8/3, 2017 at 18:21
4
Which is the best approach/framework for micro frontend development?
I have more than 5 apps based on angular, react and vue and want to display all 5 apps on a single UI.
We have many micro ...
Fontenot asked 9/1, 2020 at 8:19
7
I have a single page application created in Vue.js that utilizes the HTML5 History Mode for routing, and the html file is served with Django.
The urls.py of django is like so:
urlpatterns = [
ur...
Lamina asked 17/3, 2017 at 18:20
3
Solved
I am struggling trying to convert a given image url to base64... in my case i have a String with the image's path
var imgUrl = `./assets/logoEmpresas/${empresa.logoUrl}`
how can i convert the give...
Rosmunda asked 23/7, 2019 at 2:18
3
I'm writing a SPA that uses underscore templating. The app searches for and rates music albums and returns the result via ajax. If facebook open graph metatags cannot be altered dynamically and the...
Beggary asked 17/4, 2013 at 20:18
1
So, I have had debugging setup using Chrome debug extension and following launch.json:
"version": "0.2.0",
"compounds": [
{
"name": ".Net + Browser&q...
Astronomical asked 6/9, 2021 at 7:5
1
Solved
I have the functionality when the user doesn't accept the Permission ( At the first time login) I am redirecting it to Signin page. Since the token is cached it is constantly showing the Permission...
Acord asked 24/8, 2021 at 13:2
3
Solved
We try to configure Azure CDN on Microsoft Standard pricing to allow us rewrite Url to route all application routing to ./index.html. How to setup rules engine to rewrite url but left all js file a...
Boulogne asked 18/11, 2019 at 12:20
2
I have built an Angular SPA and I am ready to implement tracking. I want to keep it simple so no plug-in just direct gtag tracking. So, I've gone through all this documentation for the most part it...
Stretcherbearer asked 4/8, 2020 at 13:32
2
This might be a silly question, but I'm just starting now in Web dev, and I am especially new in JAMStack.
I've been reading a bit, and from what I get, in JAMStack basically, we give everything t...
Sleight asked 5/5, 2020 at 23:28
8
Solved
Currently in my website, I used HTML5's pushState() and popState in links to increase the speed. However, this doesn't really change the real URL and it looks like it will affect and mess up the Go...
Kentigera asked 9/3, 2012 at 3:28
2
Solved
I would like to listen to path changes in a SPA which is not maintained by me.
I found one solution here: https://stackoverflow.com/a/44819548/7042552
But still, it seems kind of "hacky" ...
Bangle asked 14/11, 2018 at 15:24
1
Solved
I have the following situation:
An S3 bucket with multiple path-based applications, grouped by version number.
Simplified example:
/v1.0.0
index.html
main.js
/v1.1.0
index.html
main.js
Each...
Bicapsular asked 19/5, 2021 at 14:27
2
Solved
I have written a cordova, single page app. When I run it on my android everything works fine. When I put it on the ipad things are going crazy. I fixed the problem with the status bar by installing...
Thermoscope asked 30/6, 2015 at 18:50
4
Solved
I have a single-page application written in React with Ruby on Rails back-end (API mode). Rails is also serving static files. I'm pointing Rails router to public/index.html, so my SPA could manage ...
Religiose asked 11/5, 2017 at 9:47
2
Solved
I am trying to embed a static site (and SPA) into my Go code. The high level structure of my project is
.
├── web.go
└── spa/
└── index.html
My intent is to have http://localhost:8090/ serving in...
Prau asked 23/4, 2021 at 15:11
© 2022 - 2024 — McMap. All rights reserved.