Express.js 路线中的特殊字符(如 DOTS)?
我得到了以下node.js /express.js方法:
app.post('/pin/save/:latitude/:longitude', function(req, res) {
...
}
分配给纬度和经度的值包括点,例如16.33245 / 46.28473。问题是,express.js 告诉我它无法获取该网址。删除它有效的点...有什么建议我如何才能快速接受路线中的点?
谢谢
i got the following node.js / express.js method:
app.post('/pin/save/:latitude/:longitude', function(req, res) {
...
}
the values that get assigne to latitude and longitude include dots, e.g. 16.33245 / 46.28473. the problem is, express.js tells me that it can't GET that url. removing the dots it works... any advice how i can get express to accept the dots in the route?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了 post 的路由之外,您是否还提供了为 get 定义的路由?我尝试了这个,效果很好:
with:
给了我:
Do you gave a route defined for get in addition to the one for post? I tried this and it worked fine:
with:
gave me: