带有网址参数的请求

时间:2018-07-26 11:39:59

标签: node.js express httprequest

在这样的HTTP get请求中,

http://example.com/page?parameter=value&also=another

我可以使用parameter = value和alse = another来获取页面, 但我想要类似的东西,

http://example.com/page?parameter<value&also=another

这样我就可以得到其参数小于值的页面。 有什么办法吗?

2 个答案:

答案 0 :(得分:0)

希望这对您有用。

http://example.com/page?parameter={"lt":value}&also=another

在查询中传递JSON对象。

答案 1 :(得分:0)

URL中不允许使用<字符。

您可以查看此questin and its answers