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 = ...
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/...
0
votes
0
answers
157
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
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**/...
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 + '&...
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 ...
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 ...
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....
1
vote
2
answers
5k
views
TypeError: Cannot read properties of undefined (reading 'params') when fetching Data using async / await syntax
I am trying to access specific data from my django backend based on using the unique id in the url for my react app on the frontend. I expect to see the body of the journal
Instead i get this error:
...
0
votes
1
answer
1k
views
Use @RequestMapping with Dynamic URL at Controller Level
I've been doing my fair amount of research through Stack Overflow and Google and the closest I found was something like this post but still it does not answer my question. The documentation for @...
0
votes
1
answer
194
views
Building dynamic url in flask [werkzeug.routing.BuildError]
app = Flask(__name__)
#A basic flask function
@app.route('/')
def welcome():
return "2+2"
#Building URL Dynamically
@app.route('/marks/<int:num>')
def dynamic(num):
if num&...
0
votes
1
answer
2k
views
How can I link several domains to one Laravel project?
I have this one project, that has 3 databases and 1 dynamic page, which takes content from those databases. I need 3 different URLs (url1.test, url2.test, url3.test), each should contain one page, ...
0
votes
3
answers
801
views
How can I restrict user to to view only specific page having a dynamic URL?
I am doing a project in which I have created a model form for employee details. Now, I want the user to be able to update only their records through the employee form and the URL of this employee form ...
0
votes
0
answers
37
views
dynamic url chaning issue with multiple files
I have 2 files called "free.php" and "new.php".
for example consider, The free.php contains Hi, $_GET['s']. new.php contains Hello, $_GET['s'].
I get URLs like https://website.com/...
1
vote
2
answers
3k
views
How do I use a dynamic Font url in a CSS style sheet
I'm building a widget which users can design and then embed on their own website. One thing they can choose is the font, which we self host on AWS.
During the initial load, the app hits our API for ...
0
votes
1
answer
2k
views
Dynamic route react-router-dom
I am wanting to create a dynamic route in my react app using react-router-dom. I have been reading documents over it but none of it is really making sense in my situation. I have a projects page, and ...
1
vote
1
answer
513
views
Creating multiple and dynamic routes for one function in Flask | Python
I'm trying to create a verification program where a user goes to a URL and then they get verified.
For each user, I want to create a new url example.com/verificationUser, for user 2 it'd be example....
3
votes
3
answers
5k
views
How to redirect to a dynamic url in django
I am working on a django project. in the project I have a dynamic url as follows
app_name = 'test'
urlpatterns = [
path('root', views.root, name='root'),
path('output/<str:instance>', ...
3
votes
1
answer
1k
views
How can we get deep link url from firebase dynamic link short url programmatically?
I have QR code made by firebase dynamic link (short URL) which will redirect to the App Store/Play Store directly to download the app and read the deep link query parameters when launching the app for ...
0
votes
2
answers
109
views
SEO link for dynamic database data
I have problem with SEO links. The Issue is that i would like to open an Clean SEO link to reach any article in my database, while simultaneously naming it in this format:
website.com/category/id/...
0
votes
1
answer
2k
views
Passing dynamic javascript variable as url in template
I am trying to create a dynamic url in javascript to pass to my html template.
In my js, I've got:
// dynamic url to edit flashcard
function createDynamicURL()
{
//The variable to be returned
...
1
vote
1
answer
5k
views
Using dynamic URL to link to Drillthrough pages within the same report in Power BI
I have a report in Power BI. Currently I can drill through from home page using Field A to multiple other pages (say page for Category 1, page for Category 2, page for Category 3, etc.).
Is there a ...
38
votes
3
answers
64k
views
Dynamic routing with getServerSideProps in Nextjs
I'm trying to learn nextjs. Struggling to work out routing with getServerSideProps.
Using a free API I have a list of countries displayed on the DOM. I want to dynamically link to a country and data ...
0
votes
2
answers
123
views
d3 dynamic url based on array values
I'm trying to append image urls to an SVG element using D3. I've tried various codes including this one.
svg.append('g')
.selectAll('image')
.data(data)
.enter()
.append('image')
.attr('class', '...
3
votes
1
answer
85
views
AngularJS dynamic urls
For example I have 3 links on my page:
A
B
C,
When I click A it should function something like this
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$http....