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

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 = ...
kando's user avatar
  • 615
1 vote
0 answers
132 views

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/...
Malith Dilshan's user avatar
0 votes
0 answers
157 views

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 ...
Erba Aitbayev's user avatar
1 vote
0 answers
128 views

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**/...
Umar Anwar's user avatar
0 votes
0 answers
877 views

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 + '&...
Betty Mock's user avatar
  • 1,379
0 votes
1 answer
606 views

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 ...
Morteza Jalambadani's user avatar
5 votes
1 answer
1k views

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 ...
Wabbitseason's user avatar
  • 5,701
1 vote
1 answer
1k views

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....
codingcat's user avatar
1 vote
2 answers
5k views

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: ...
fulo's user avatar
  • 105
0 votes
1 answer
1k views

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 @...
Pmsmm's user avatar
  • 442
0 votes
1 answer
194 views

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&...
Siddhant's user avatar
0 votes
1 answer
2k views

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, ...
Dameli's user avatar
  • 3
0 votes
3 answers
801 views

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 ...
mayank gupta's user avatar
0 votes
0 answers
37 views

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/...
Mild Milly's user avatar
1 vote
2 answers
3k views

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 ...
will's user avatar
  • 59
0 votes
1 answer
2k views

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 ...
CornFedKorean's user avatar
1 vote
1 answer
513 views

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....
Victor's user avatar
  • 182
3 votes
3 answers
5k views

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>', ...
Sashaank's user avatar
  • 972
3 votes
1 answer
1k views

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 ...
Sunil Targe's user avatar
  • 7,497
0 votes
2 answers
109 views

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/...
user avatar
0 votes
1 answer
2k views

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 ...
MeL's user avatar
  • 1,269
1 vote
1 answer
5k views

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 ...
user13399910's user avatar
38 votes
3 answers
64k views

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 ...
DGB's user avatar
  • 1,342
0 votes
2 answers
123 views

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', '...
Rommel's user avatar
  • 1
3 votes
1 answer
85 views

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....
Vaishnavi_110697's user avatar