事实上,带有 Rest 代理和 Json 读取器的 ExtJS 4.1 要求这样的 URI(虽然是 urlencoded):
http://localhost:8000/api/v1/choice/?filter=[{"property":"question_id","value":2}]
我的服务器希望过滤器请求看起来像:
http://localhost:8000/api/v1/choice/?question_id=2
我查看filterParam
了代理的配置,但似乎不相关。有没有一种实用的方法来实现服务器需要的请求 URI?