在HTML中我传递像这样的变量
<input type="hidden" name="custom" value="custom value" />
<input type="hidden" name="return" value="http://mydomain.com/paypal" />
在Nodejs中特别是SailsJS MVC我该怎么做才能收到返回的变量??????
答案 0 :(得分:1)
SailsJS构建于Express之上,因此您可以参考Express req
object documentation了解如何获取请求参数。
var customValue = req.param('custom'),
returnValue = req.param('return');