在这样的HTTP get请求中,
http://example.com/page?parameter=value&also=another
我可以使用parameter = value和alse = another来获取页面, 但我想要类似的东西,
http://example.com/page?parameter<value&also=another
这样我就可以得到其参数小于值的页面。 有什么办法吗?
答案 0 :(得分:0)
希望这对您有用。
http://example.com/page?parameter={"lt":value}&also=another
在查询中传递JSON对象。
答案 1 :(得分:0)
URL中不允许使用<
字符。
您可以查看此questin and its answers。