我的快递服务器有问题
app.get('/callback/:nation/:username/?:permalink', function(req, res)
{
nationurl = req.params.nation;
username = req.params.username;
storypermalink = req.params.permalink;
console.log("nation: "+nation);
console.log("username: "+username);
console.log("permalink: "+permalink);
});
因为/?:它拆分了用户名并且没有给出我的永久链接:
nation: poneyclub
username: j
permalink: hondoe
有人有想法吗?