215 questions
0
votes
1
answer
48
views
Flink dynamic sink routing with confluent schema-registry
I have an Apache Flink app that is using a kafksink with a setTopicSelector
KafkaSink<T>> sink =
KafkaSink.<T>>builder()
.setBootstrapServers(sink_brokers)
...
0
votes
0
answers
59
views
Angular 19 standalone getting error while creating build for dynamic routes
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 ...
0
votes
1
answer
107
views
Dynamic routing with SSG build in NextJS app router [closed]
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 ...
0
votes
0
answers
43
views
vue dynamic route matching with params issues are memory leak and multiple events fired
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 ...
0
votes
1
answer
61
views
Angular dynamic component loading through a config file
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: '../../...
0
votes
0
answers
36
views
How to Dynamically Manage Route Paths in React to Avoid Manual Updates Across the Application?
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(...
0
votes
0
answers
28
views
Angular SSR - source map files added at the end of url (dynamic routes) - is that normal?
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",
"...
1
vote
0
answers
244
views
Blog with Dynamic Routing via Content Collections in Astro (SSG Mode)
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 ...
0
votes
2
answers
205
views
Next.js Dynamic Route Type Error in searchParams when Fetching Data for Client Component
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.
...
0
votes
0
answers
61
views
Spring Cloud Function with Multiple Beans
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, ...
0
votes
0
answers
105
views
Nuxt 3 Blog: Article Changes When Language Changes, but Slug Does Not Update
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 ...
1
vote
0
answers
44
views
Laravel 11 - I want to create dynamic routing for multi level access but without passing the same parameter each time
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'));
...
0
votes
0
answers
101
views
Dynamic routes based on ID with multiple optional sub sections
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/...
2
votes
2
answers
776
views
Vue router gives a warning when adding dynamic route: No match found for location with path "/test"
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/...
-1
votes
2
answers
144
views
How can I get Linkerd HttpRoute weights to work?
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 ...
1
vote
1
answer
84
views
Dynamic routing in angular based on a condition
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(...
0
votes
1
answer
59
views
Setting Context | Gettig value off TransactionSynconizationMananger.isCurrentTransactionReadOnly()
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 ...
1
vote
0
answers
47
views
React Router not rendering dynamic route correctly for IndividualCard component
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 '...
0
votes
1
answer
140
views
How do I upload Nextjs 14 app to hostinger with the dynamic routes and pages working?
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 ...
0
votes
0
answers
67
views
Next.js dynamic route value not available in page.tsx
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, ...
1
vote
1
answer
337
views
How to determine destination for UDP packets, at proxy server? [closed]
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 ...
0
votes
1
answer
349
views
OCI peering VCN in the same region but different tenancies with an upgraded DRG
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#...
0
votes
1
answer
68
views
Get undefined while try to create a dynamic route in nextjs
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 ...
0
votes
0
answers
1k
views
Why is Astro JS Dynamic Routing returning 404 always on my local dev environment?
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 ...
1
vote
0
answers
453
views
Next.js App Router: How to handle multiple categories & subcategories in dynamic routes?
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....
1
vote
1
answer
998
views
Issue with Dynamic Routes in Next.js App Hosted on Firebase
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 ...
-2
votes
1
answer
802
views
Dynamic routing settings in vercel.json for React Js application?
How to setup dynamic routing for react application in Vercel deployment ?
Suppose if we have multiple paths in a ecommerce application ( "/", "/cart", "detail/:id", "...
1
vote
2
answers
6k
views
useLocalSearchParams not working in expo-router
I have the following React Native component with a router from expo-router:
<TouchableOpacity
onPress={() => router.push({ pathname: `//${category}/${type}`})}
activeOpacity={0.7}
&...
0
votes
1
answer
276
views
Next JS dynamic Routing based on clicked item ID
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 ...
0
votes
1
answer
827
views
routing in Class of Flet
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 ...
0
votes
1
answer
1k
views
AstroJs: Is it possible to have multiple returns inside getStaticPaths()?
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.
...
0
votes
2
answers
46
views
How to implement a dynamic router using ballerina?
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 ...
0
votes
2
answers
129
views
NextJS - public images won't work in dynamic routes
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,...
0
votes
1
answer
169
views
SvelteKit: Dynamic Component Styling Issue - Parameters Not Updating on Navigation between Subpages
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/...
0
votes
2
answers
66
views
Vue dynamic routing
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 ...
0
votes
1
answer
126
views
Kafka Connect Dynamic Routing without Kafka Stream
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 ...
0
votes
0
answers
1k
views
Astrojs Pagination `getStaticPaths()` route pattern was matched, but no matching static path was found for requested path
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 ...
1
vote
2
answers
106
views
ExpressJs dynamic routing not working properly with react get request
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, ...
0
votes
2
answers
228
views
Difficulty Displaying Dynamic Content with Plain JavaScript - Routing Issues
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 ...
2
votes
0
answers
613
views
How can I reach dynamic routes when using @vite-pwa/nuxt
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 ...
0
votes
0
answers
748
views
Not able to redirect from a dynamic route to any other route of page folder in next.js
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
...
0
votes
1
answer
1k
views
MapDynamicControllerRoute in ASP.NET Core only selectively working
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<...
1
vote
1
answer
1k
views
Dynamic routing in flet python
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 "...
0
votes
2
answers
1k
views
How to get dynamic parameter in functional canActivate guard without ActivatedRoute in Angular v16?
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 ...
0
votes
1
answer
1k
views
Question: Single Spa with an Angular Parcel with dynamic routing inside the Parcel
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 ...
1
vote
0
answers
81
views
extendRoutes not accepting the dynamic urls
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 ...
2
votes
0
answers
162
views
Next.js equivalent of NuxtPage to to use in parent page
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 ...
-1
votes
1
answer
171
views
In React, is it possible to render dynamic route on a component without fetching data with useEffect? [closed]
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 ...
0
votes
0
answers
422
views
Dynamic HTML Component without Using any JS Library (Vanilla JS)
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 ...
3
votes
1
answer
15k
views
Astro.js dynamic routing
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(...