routes Questions
2
I have a scenario in an implementation of spring cloud gateway (Just for illustration call that service custom api gateway). In this 'Custom API Gateway' I want to define a route, filters, predica...
5
Solved
I am using Next JS.
Currently, my page is in the url
http://localhost:3000/project/613
Now, i want to push the page to
http://localhost:3000/project/613/time/123
Is there any way i can push relat...
4
Solved
I am working on Nodejs/Express app.I used express-generator to create basic structure. For now a specify all routes in the app.js file
var indexRouter = require('./routes/index');
var router1Route...
6
I am started with nestjs recently and i want apply a middleware for all routes, except the auth route.
In the documentation it says that I can add all the controllers or paths of the routes where ...
Selfconscious asked 11/4, 2020 at 6:36
6
I was wonder if there is alternative to Navigator's popUntil() method, or any workaround to achieve the same.
If i were to use Navigator. I would use like so:
void _logout() {
Navigator.popUntil(c...
Curiosity asked 29/3, 2023 at 5:19
5
Solved
Legacy .net core frameworks used UseMvc() for adding global route prefix. How to make it for asp.net core 3 without UseMvc() ?
Brunhilda asked 11/10, 2019 at 12:8
1
I'm hoping for a bit of help here if possible. I'm developing a project in React and using TailwindCSS and HeadlessUI for transitions. Is it possible to use HeadlessUI transitions with route? I can...
Chromophore asked 26/9, 2021 at 21:21
5
Solved
In a vanilla flutter I use to pass multiple parameters to other screen like this:
Navigator.of(context).push(MaterialPageRoute(
builder: (_) => CatalogFilterPage(
list: list,
bloc: bloc,
))...
Plentiful asked 14/7, 2022 at 6:20
5
Solved
I have a problem, new routes in laravel are not working, url shows the correct route but almost as if it does not get to my routes web file just returns page not found every time.
I have tried:
us...
6
Solved
I'm trying to get the prameter :id from my activated route using observables. When I print params on the console I get the right values for :id. But it's not the case for this.id. I get the value N...
Clyte asked 4/4, 2019 at 20:11
6
According to the Flutter's official deep linking page, we do not require any plugin or native Android/iOS code for handling deep links.
But it doesn't really tell us how we can get the data from th...
Rhines asked 22/6, 2021 at 9:57
3
Solved
I am building a single page web application in ASP .NET Core which requires me to map some URLs to an endpoint which serves a specific static file called "index.html".
Currently, I used a hack sol...
Range asked 14/6, 2020 at 12:28
6
Question
I have a probably rather simple question, but I'm unable to find an answer with nice explanations:
What is the difference (if any) between a route and an endpoint in the context of a RESTf...
16
Solved
While implementing persistent bottom bar, previous route need to be restored when a button in the bottom bar was clicked.
When a button in the bottom bar is clicked, its current route path (/a/b/...
Raouf asked 29/9, 2017 at 7:33
4
Solved
I get an error when i build next app (yarn run build)
I made new clean project i tried there.
This is my route (/api/categories/route.ts)
export async function GET() {
return new Response(JS...
Neoprene asked 30/6, 2023 at 19:23
7
I am getting started with Blazor server-side and I don't get the routing right. I don't understand the need for the base tag in _host.cshtml. If I still have to add the base url in every Blazor com...
Hu asked 12/11, 2019 at 22:55
5
Solved
I am using Nuxt.js and have some dynamic routes. My folder structure is this:
- pages
- product
- _slug.vue
I link to the route like this:
<nuxt-link :to="{ name: 'product-slug', params: ...
Quinate asked 11/2, 2020 at 12:56
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...
Brien asked 21/7, 2020 at 20:7
5
Solved
From what I can understand, counting-to-infinity occurs when one router feeds another old information, which continues to propagate through the network toward infinity. From what I read, this can d...
Lackey asked 23/11, 2012 at 6:5
20
Solved
I am working on a project that requires a secure connection.
I can set the route, uri, asset to use 'https' via:
Route::get('order/details/{id}', ['uses' => 'OrderController@details', 'as' =&g...
5
I am using fastify as a web framework in my nodejs project. I want to call all my routes from a directory having a base route defined in main JS file like we do in express. I have read many blogs b...
Adrastus asked 21/8, 2019 at 10:30
2
Solved
Should be an easy question, just can't find the answer.
I have an SPA (AngularJS) with web api which is self hosted with Owin. I use Nancy to serve the page, but I would like to get rid of Nancy a...
Cerebritis asked 12/2, 2015 at 11:54
10
In ASP.NET Core, is there a way to see a list of all the routes defined in Startup? We are using the MapRoute extension method of IRouteBuilder to define the routes.
We are migrating an older pro...
Papotto asked 10/2, 2015 at 15:42
7
Solved
I want to detect when a page is refreshed using a router in my single-page application (Angular project).
Is there an alternate way?
2
Lets imagine, I have a route defined like the following:
constraints MyRouteConstraint.new do
get ':param/:param1/:param2', to: 'controller#action'
end
How can I get the pattern ':param/:param1...
Adelia asked 1/3, 2015 at 18:39
1 Next >
© 2022 - 2024 — McMap. All rights reserved.