Skip to content
Advertisement

NoReverseMatch at /v2/search/SARS_CoV_2/GID1716

I am developing a django application in which I am trying to send a value of the variable to the backend on click of a button through javascript.

javascript code:

JavaScript

urls.py

JavaScript

views.py

JavaScript

when I execute this code i am getting following error:

JavaScript

what am I doing wrong? how can I solve this issue. I am still at learning stage of django and I am not able to figure out how to solve this error.

Advertisement

Answer

The error message says it couldn’t find a url that matches {% url "camkinetv2:newinteractors_intnet" tab1.caMKipedia_Id IUPredscorethreshold %}. Your urls.py declares IUPredscorethreshold to be a string by putting str: in front of it. In your javascript you assign 0.4 to that variable which is an integer. Therefore, the url you doesn’t resolve.

Change your path in urls.py to: path( "dataJson/newinteractors_intnet/<str:geneId>/<int:IUPredscorethreshold>", views.newinteractors_intnet, name="newinteractors_intnet", ),

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement