215 questions
0
votes
1
answer
40
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
1
answer
106
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
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
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",
"...
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
99
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 ...
0
votes
0
answers
100
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/...
-1
votes
2
answers
143
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 ...
0
votes
1
answer
54
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 ...
0
votes
1
answer
133
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 ...
1
vote
1
answer
335
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
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 ...
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....
-2
votes
1
answer
800
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", "...
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
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
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
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
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 ...
0
votes
2
answers
223
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 ...
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
...
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
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 ...
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 ...
0
votes
0
answers
420
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 ...