164 questions
0 votes
1 answer
25 views
Flask: Blueprint.get_static_file(filename) vs dynamic url_prefix
Question How can I make a static lookup work if the url contains additional variables? Example When I use a blueprint (id) with a dynamic url_prefix (<int:id>): # /a/__init__.py : a_bp = ...
0 votes
0 answers
50 views
flutter video player with chiew controller playing dynamic urls
import 'package:cached_network_image/cached_network_image.dart'; import 'package:chewie/chewie.dart'; import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; ...
1 vote
0 answers
132 views
I need to change the url dynamically with the scroll
I'm implementing a web project with next.js and I need to update my URL dynamically when users are scrolling through the page. For example, let's say I have 50 components on my current page (/home/...
1 vote
1 answer
351 views
Solid-Start seems to not always read URL parameter correctly
I want to use a slug in the URL (localhost:3000/birthdays/:id) to get an ID and then fetch that item using Pocketbase's JS SDK. On the first attempt, I get this error in my browser: Cannot read ...
0 votes
0 answers
158 views
Google Sheets Dynamic URL pass to ImportRange() formula?
For simplicity, assume I would have a folder in Google Disk for each of 12 months. So 12 folders. In each there are 2 Google Sheets. One is report sheet. Another is source sheet. So 2 sheets in a ...
1 vote
1 answer
74 views
How can I troubleshoot why this Python loop won't properly load all files?
As a personal project, I am trying to load all of the VA pay data into a database. I wrote a code that will loop through a table that stores the state abbreviations and read this to populate the url ...
1 vote
0 answers
128 views
How to make dynamic URL based on Users Country
I want to show the dynamic URL of few pages in wordpress. For example if user views a page from FLORIDA then the URL should look like the following: https://example.com/learn/**florida**/...
1 vote
1 answer
107 views
NextJS dynamic routing, is "as" really necessary?
Both links work exactly the same, do we really need to use the as, can't we use just the href? import Link from 'next/link' export default function () { return (<> <Link href="/...
0 votes
0 answers
877 views
JavaScript window open passing dynamic URL parameters
Working in ColdFusion, I have a JavaScript function like this: function switchyn(obj,id,karr,kval){ // ... Some stuff about obj and id .... var fullurl = 'arch-update.cfm?karr=' + karr + '&...
1 vote
2 answers
2k views
Dynamic URL Routing Django
I Created a dynamic url routing/views for each one of the product on my website, Everything is working fine until I go to Cart/checkout and it loads on of the product page currently in Cart instead of ...
0 votes
1 answer
606 views
RequestMapping Dynamic Url
I Have a Spring Boot Server, In my Database, I have some URLs without any special pattern, I want RequestMapping all of these stored URLs into the Controller and return a special view(control by ...
0 votes
1 answer
368 views
request.path does not match expected dynamic url
I'm trying to highlight specific buttons in the navigation bar when I'm on a specific page and hyperlink to it when i'm not. The url for this page is a dynamic url however and using the {% url ... as ...
5 votes
1 answer
1k views
How to properly map my markdown content to dynamic URLs in Next.js?
I'd like to have the following URL structure: URL Role / markdown contents of /index.md /about markdown contents of /about.md /cookies markdown contents of /cookies.md /privacy-policy markdown ...
0 votes
1 answer
544 views
How to get dynamic URL from ChildWindow using cypress
I will click on button , it will then popup child window having dynamic URL each time. Now i need to grab the dynamic URL and place it in cy.visit() and automate the things in child window I tried in ...
1 vote
1 answer
1k views
How do I create a dynamic url based on user input using python?
New to python here so this is mostly a syntax & library question. I'm looking for the most efficient way to create a dynamic url within python that is built on user input to later search and parse....