我有一个来自请求请求的样本参数,我不确定如何在控制器上处理它。我的示例参数如下所示,
'qArg.entitledReports':'MegaGrid',
queryNamespace':'ReportsMapper',
'query':'getInbox',
'qArg.folderID':folderId,
'qArg.productName':Globals.product.name,
'qArg.filterDefinition': filter,
'page':1,
'qArg.startIndex':startIndex,
'qArg.limitIndex':endIndex,
'qArg.locale': Globals.locale,
'qArg.isLocale': isLocale
我知道访问queryNamespace, query, page
之类的参数很简单。我不知道如何处理qArg.
模型类中从RequestBody
开始的参数。
你能帮我吗?