url-routing Questions

5

I have developed a servlet that generates a .url file and send it to the user. The target is to let the user access to the web application without entering the username and password data, by double...
Siriasis asked 24/9, 2013 at 8:40

1

Solved

I've created a reprex for an R Shiny app where I want to give the appearance of subpages for navigation, swapping the main content of the page out depending on the URL given. The closest I've got t...
Conceptualize asked 18/5 at 12:8

5

I am working on an angular application with routing and path parameter. With a button click, a function is called to redirect the user to a new URL with the same path parameter. Although the URL in...

9

Solved

I am using url_for to generate a redirect URL when a user has logged out: return redirect(url_for('.index', _external=True)) However, when I changed the page to a https connection, the url_for s...
Outline asked 11/2, 2013 at 10:56

1

Solved

I have a problem using FastAPI, trying to dynamically define routes. It seems that the final route/handler defined overrides all the previous ones (see image below) Situation: I have a lot of Pydan...
Rutger asked 5/3 at 19:27

8

Solved

I want 2 pages in my Chrome extension. For example: first(default) page with list of users and second with actions for this user. I want to display second page by clicking on user(ClickableListIte...

9

Solved

http://example.com/something/somewhere//somehow/script.js Does the double slash break anything on the server side? I have a script that parses URLs and i was wondering if it would break anything ...
Alrick asked 15/4, 2012 at 10:22

2

My deep links on iOS aren't working correctly (I followed the official Flutter guide on how to implement deep links). On Android, everything works perfectly fine, but on iOS (when the app is killed...
Satire asked 5/10, 2023 at 10:17

19

Solved

I'd like to make a redirection in Vue.js similar to the vanilla javascript window.location.href = 'some_url' How could I achieve this in Vue.js?
Hymenopterous asked 27/2, 2016 at 1:15

5

Solved

I have a route defined in a symfony2 controller using annotations. EG: @Route("/{year}", name="show_list_for_user", defaults={ "year" = "2012" }) Is it possible to make make the default year dyn...
Unlade asked 9/8, 2012 at 14:43

10

Solved

I know about CRON and how to create/manage it. But this issue was different. I want to develop a module to delete any (unpaid) order that exceeds the time frame given. Ex: I want to delete any unp...
Wheatear asked 4/3, 2014 at 18:52

2

Solved

I've tried to check through the official documentation, various issues, and inside SO previous questions, but I can't find confirmation if it's possible to create a dynamic route in Next.js that co...
Turino asked 7/7, 2022 at 15:35

1

Solved

I'm trying to serve React SPA and a few API endpoints from FastAPI. React has its own routing, so in order to split responsibilities I use 2 FastAPI apps - one comes with all authorization bells an...
Luminosity asked 21/6, 2023 at 21:44

1

Solved

There are two ASP.NET Web Form App under one domain by using virtual directory EMR and EMRSSO in IIS server: https://test.xyz.com/emr https://test.xyz.com/emrsso When I enter URL in browser for htt...
Consolidation asked 12/5, 2023 at 6:12

4

Solved

I have a URL pattern mapped to a custom view class in my Django App, like so: url( r'^run/(?P<pk>\d+)/$', views.PerfRunView.as_view( )) The problem is, I cannot figure out how I can access...
Seafarer asked 23/11, 2012 at 11:7

12

I am using the same component for three different routes: <Router> <Route path="/home" component={Home} /> <Route path="/users" component={Home} /> <Route path="/widgets" c...
Stockholm asked 11/11, 2016 at 6:0

7

Solved

I understand that we can use reverse() in FBV and reverse_lazy() in CBV. I understand that we have to use reverse_lazy() in CBV as the urls are not loaded when the file is imported (Ref: Reverse_la...
Sonde asked 7/2, 2018 at 17:8

3

Solved

I want to create an IRouteConstraint that filters a value against possible values of an enum. I tried to google it for myself, but that didn't result in anything. Any ideas?

4

Solved

I have a legacy web app that is being replaced with React and it is called by these various systems by being passed a URL (derived from records in and existing DB system) The app renders folder vie...
Curson asked 19/1, 2016 at 16:2

5

here is my Angular2 app structure: Here is part of my code. The following is the main module of the Angular2 app, that imports its routing rules and a child module (EdgeModule) and uses some com...
Obduliaobdurate asked 18/10, 2016 at 14:22

5

Solved

I have a GET method with requested parameter in path: @router.get('/users/{user_id}') async def get_user_from_string(user_id: str): return User(user_id) Is it possible to get base url raw path (i...
Manzoni asked 12/5, 2022 at 14:55

3

The Question I'm trying to use the routes, as defined by the CMS, to fetch content, which is used to determine which Page to load in my our Nuxt frontend. So, how do you implement your own logic fo...

3

Solved

Website works for jerrygoyal.github.io/Flash-Clipboard but not for (404 error): jerrygoyal.github.io/flash-clipboard jerrygoyal.github.io/FLASH-clipboard jerrygoyal.github.io/flaSH-CLIPboard and ...
Froehlich asked 22/1, 2018 at 18:29

4

I uploaded to production my first Angular project. The website available here: http://urigross.com When I type in the address field "urigross.com" the website works fine. When I refresh t...
Dairymaid asked 18/8, 2020 at 12:22

5

Solved

I have an ASP.NET MVC 5 web site which has a controller MyFirstController. That way, I can load the index view by using https://example.server.com/MyFirst. On the other hand, I have another view th...
Shaikh asked 7/4, 2022 at 19:49

© 2022 - 2024 — McMap. All rights reserved.