I got the following node.js / express.js method:
app.post('/pin/save/:latitude/:longitude', function(req, res) {
...
}
values that assign latitude and longitude include points, for example. 16.33245 / 46.28473. the problem is that express.js tells me that it cannot get this url. deleting points that it works ... any advice how can I express to take points on a route?
thank
source
share