Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
48 views

I have an Apache Flink app that is using a kafksink with a setTopicSelector KafkaSink<T>> sink = KafkaSink.<T>>builder() .setBootstrapServers(sink_brokers) ...
raphaelauv's user avatar
  • 1,039
0 votes
0 answers
59 views

I have created an Angular 19 SSR application where I have standalone components and there are two modules like admin and actors. I have created dynamic routes in admin routing page. It works perfectly ...
Roopa Shekhawat's user avatar
0 votes
1 answer
107 views

I am working on a SSG website using NEXTJS app router. I have generated a static build (OUT). I want dynamic path like localhost:3000/username I created src/app/[username]/page.js and when i enter ...
Mujahid Ali's user avatar
0 votes
0 answers
43 views

I have dynamic routes in my router where I load different content depending on the id params, the problem is that as I visit pages without refreshing the page the memory usage starts to increase with ...
user10877669498464651468548513's user avatar
0 votes
1 answer
61 views

I have a question about angular dynamic component loading through an environment config file. Below is a sample of my environment file: routes: [ { name: 'auth/logout', path: '../../...
Damian's user avatar
  • 304
0 votes
0 answers
36 views

I have a Laravel backend with defined routes like this: Route::get('task-list', [TaskController::class, 'taskListInfo']); Route::post('task-save', [TaskController::class, 'taskInfoStore']); Route::put(...
Motalib Hossain's user avatar
0 votes
0 answers
28 views

I cannot find the answer, but is that normal, that during SSR I have urls like: { "id": 1, "url": "/event/auth-link.component-AVZNHIWP.css.map", "...
newbe's user avatar
  • 21
1 vote
0 answers
244 views

I'm having trouble with dynamic routing in Astro. I'm working with a Content Collection called "Articles" and then created a route: [slug].astro. However, the slug does not resolve to the ...
kaboom_coder's user avatar
0 votes
2 answers
205 views

After creating a dynamic route [id] it contains 2 pages, a server side component where the error is and a client side PolicyVerificationClient.tsx which takes the params Certificatenumber and id. ...
Wania Mirza's user avatar
0 votes
0 answers
61 views

I'm building a Spring Cloud Function application with multiple functions (e.g., uppercase, reverse, etc.) for deployment as an AWS Lambda. The function is triggered by data received from AWS IoT Core, ...
Shivakumar V's user avatar
0 votes
0 answers
105 views

I'm working on a multilingual blog using Nuxt 3, and I'm experiencing an issue where the article content updates correctly when the language is changed, but the slug in the route does not update ...
Hasan Has's user avatar
1 vote
0 answers
44 views

In laravel 11 i setup my route like this : then: function(){ Route::middleware(['web', 'admin'])->prefix('admin')->name('admin.')->group(base_path('routes/admin.php')); ...
Shubham Kumar's user avatar
0 votes
0 answers
101 views

I am implementing dynamic routing in Astro SSR mode, based on the id. I can have different routes, with the id on various place like: foo/bar/12345/my-path foo/bar/section/12345/my-path bar/foo/...
meez's user avatar
  • 4,888
2 votes
2 answers
776 views

I add a route dynamically and it works but I get the warning below. "No match found for location with path "/test". Code Sandbox demo url. https://codesandbox.io/p/github/eguvenc/...
Ersin Güvenç's user avatar
-1 votes
2 answers
144 views

I got a pretty straight forward problem. I'm new to Linkerd. I currently have 2 backend deployments and 2 matching services. I also exposed these services with a ingress. Everything works fine until ...
t3rmo's user avatar
  • 57
1 vote
1 answer
84 views

I want my app to route to different components based on an environment variable(e.g. switch). In the constructor of app routing module , I have added the condition to check for the variable. if(...
Teeee's user avatar
  • 13
0 votes
1 answer
59 views

I'm trying to dynamic route my transactions to the READ_WRITE or READ_ONLY datasources. But in my class TransactionRoutingDataSource extends AbstractRoutingDataSource when i am trying to get the value ...
Eric Borges's user avatar
1 vote
0 answers
47 views

I'm trying to render a set of pages in React using one dynamic Router, but for some reason my data isn't being found. Here's my code: // App.js import { BrowserRouter as Router, Route, Routes } from '...
DragonFruit's user avatar
0 votes
1 answer
140 views

I have a nextjs 14 news app with a backend to upload news everyday. How do I upload the Nextjs app to hostinger to build the dynamic routes? I tried building it and the out folder was created but it ...
BIMERO's user avatar
  • 1
0 votes
0 answers
67 views

i am using nextjs app router. i can't get the dynamic route value inside page.tsx file structure src/ app/ (app)/ signin/page.tsx signup/page.tsx verify/ [username]/ page.tsx const [isSubmitting, ...
Jay Suthar's user avatar
1 vote
1 answer
337 views

I need to route TCP and UDP packets via a proxy server, at layer 4 (i.e. without TLS termination, for TCP packets). The destination address for all packets is not fixed. In other words, the routing ...
geekyrits's user avatar
0 votes
1 answer
349 views

I am trying to create a connection between 2 vcns from two different tenancies. I am following this doc to do it: https://docs.oracle.com/en-us/iaas/Content/Network/Tasks/scenario_d.htm#...
Mervin Hemaraju's user avatar
0 votes
1 answer
68 views

I am creating a blog with next.js typescript and I succeeded to fetch all my posts from MongoDB. But I couldn't create the single page which shows a single post using the id. This is my route.ts I ...
Behnam's user avatar
  • 3
0 votes
0 answers
1k views

I am building an Astro JS application and trying to use the Dynamic Routing as described here, but for some reason, it is not working at all locally and always returns the Astro JS 404 page. This is ...
Justin Erswell's user avatar
1 vote
0 answers
453 views

i have the following issue: I have a page where i have categories and some of those categories have subcategories. The categories always have the same layout and the products also have the same layout....
Elanum's user avatar
  • 11
1 vote
1 answer
998 views

I'm working on a Next.js project with dynamic routing and have encountered a problem when hosting it on Firebase. The application works fine locally, but the dynamic routes don't work as expected ...
Rukshan's user avatar
  • 73
-2 votes
1 answer
802 views

How to setup dynamic routing for react application in Vercel deployment ? Suppose if we have multiple paths in a ecommerce application ( "/", "/cart", "detail/:id", "...
Shivʌm Singh Ʀathod's user avatar
1 vote
2 answers
6k views

I have the following React Native component with a router from expo-router: <TouchableOpacity onPress={() => router.push({ pathname: `//${category}/${type}`})} activeOpacity={0.7} &...
Alexander Bogdanov's user avatar
0 votes
1 answer
276 views

I am trying to create a website where the main page is showing list of card containing information of a restaurant i tried to create folder named "detail" containing [id].jsx. this is the ...
Ferdinand Aprillian Manurung's user avatar
0 votes
1 answer
827 views

I am customizing the ToDo project that is on the Flet framework website. In a part of the code, I want to be routed to another page when the user clicks on the login button. I checked the routing ...
Amirreza's user avatar
0 votes
1 answer
1k views

I am working on a project using AstroJS. The goal is to have a few images, a title, and a description appear on a single page following the dynamic routes method using the getStaticPaths function. ...
sirrus's user avatar
  • 343
0 votes
2 answers
46 views

https://www.enterpriseintegrationpatterns.com/patterns/messaging/DynamicRouter.html I am working on implementing a mediator in Ballerina that serves as a dynamic router for incoming HTTP requests. The ...
Lakshan Weerasinghe's user avatar
0 votes
2 answers
129 views

This is the look in normal pages, logo card's floating logo And this is what happens in dynamic routing, logo card's floating logo It works if I try adding forward slash before the image name, however,...
codemarns's user avatar
0 votes
1 answer
169 views

Hi, I'm really new to web dev. While making sveltekit website, I faced issue, which prevent me from progressing with my project. Here is a link to the example repo of my issue: https://github.com/...
Rafal's user avatar
  • 93
0 votes
2 answers
66 views

I am currently developing an app and something is wrong with my code as far as dynamic routing is concern. I have data on my firebase and bringing it to the app. For each department on my database it ...
jesse ulundo's user avatar
0 votes
1 answer
126 views

I am working on a Integration layer, where I want to use Kafka Connect between Kafka Topics to achieve dynamic routing. I want to know if it is possible to use Kafka Connect to connect between 2 ...
Adnan Mian's user avatar
0 votes
0 answers
1k views

I am writing a simple Astro blog application My structure is like [lang] [chapter] [page] route is like. en/tasmania/things-to-do.mdx or hi/nsw/currentfestivals.mdx I'm getting an error when trying to ...
user3176609's user avatar
1 vote
2 answers
106 views

I have a simple api and client application. Api written with express js and client-side is react. I arranged the react dynamic routing but when I try to send get request to endpoint with dynamic path, ...
Burak's user avatar
  • 21
0 votes
2 answers
228 views

INITIAL ISSUE ISSUE I'm currently working on a web project and I'm encountering an issue where I'm unable to display dynamic content using plain JavaScript. I'm trying to create a simple dashboard ...
Tittoh's user avatar
  • 29
2 votes
0 answers
613 views

I'm using Nuxt 3.7.0. My directory structure is: -pages -pubs [id].vue When I go to /pubs/somepub the page is displayed correctly. I then install @vite-pwa/nuxt and configure the module ...
Family's user avatar
  • 1,113
0 votes
0 answers
748 views

I have some routes in my next.js application like worksheets\[grade]\[subject].js wokrsheets.js but when i am using route.push method from worksheets.js its perfectly redirecting me to Login page ...
Ritik Joshi's user avatar
0 votes
1 answer
1k views

I'm trying to use dynamic routing in ASP.NET Core. In Startup.cs I'm setting things up as follows app.UseRouting() app.UseEndpoints(endpoints => { endpoints.MapDynamicControllerRoute<...
Stephan Steiner's user avatar
1 vote
1 answer
1k views

I want to build a chat app with flet in python. For routing I defined a Router class which handles all the routing. But I am not able to figure a way out for implementing dynamic routes such as "...
RandomCoder59's user avatar
0 votes
2 answers
1k views

I'm trying to implement a functional canActivate guard in Angular v16, but I'm facing an issue with retrieving dynamic route parameters. I want to access the username and id parameters from the route ...
syahiruddin's user avatar
0 votes
1 answer
1k views

Describe the bug or question I am creating a micro frontend using Single Spa. The parcel is in angular. The parcel contains 2 components: The Payment component and the success component. My question ...
Alvaro Guillen Gonzalez's user avatar
1 vote
0 answers
81 views

I have a url in nuxt app https://example.netlify.app/nl/appartementen/strand?experiences_in[]=strand&types_in[]=appartementen In which appartementen is a type & strand is an experience. I ...
Abdullah Zafar's user avatar
2 votes
0 answers
162 views

How to display child (page) route inside parent (page) route in Next.js like Nuxt.js (using NuxtPage component). To avoid repetition of code. In Nuxt.js I need not to check whether child route is ...
Aman Ghanghoriya's user avatar
-1 votes
1 answer
171 views

I have a local API and I am importing the data in the component and then display them with .map on the return status. I actually don't need to use the useEffect hook to fetch the data, since, as ...
edo's user avatar
  • 13
0 votes
0 answers
422 views

I have a Javascript function that fetch dynamic random recipes from spoonacular API and then append some HTML to an Element, the HTML includes dynamic links HREFs, if one is clicked it will go to ...
Aasem Shoshari's user avatar
3 votes
1 answer
15k views

I am trying to create dynamic routes using astro.js. I managed to display the data, however when I am trying to access each object of the data and see some details, I get this error: A `getStaticPaths(...
M001's user avatar
  • 35

1
2 3 4 5