当我从 dStore 获取时,URL 看起来像这样
http://localhost/rest/dojo?department=sales
效果很好。如果我然后单击 dGrid 的标题,则发送的 URL 看起来像这样。
http://localhost/rest/dojo?department=sales&sort(+id)&limit(25)
它不应该发送 &sort=+id&limit=25 吗?我在后端使用 Java 和 Spring,它希望参数以这种方式格式化。现在我无法接收额外的参数。有没有办法让它按照 Spring 期望的方式发送参数?