angularJS http GET参数在服务器上未定义

我在我的controller.js文件中有这块代码

$http({ method: 'GET', url: '/getGuestList', params: {exhibitorID: 1} }) 

基本上,应该让所有参展商ID为1的参展商的客人。

在服务器端,我已经尝试loggingreq.body.paramsreq.body.exhibitorID但他们都没有定义。 我只是熟悉angularjs,我不知道我错过了什么。

您的帮助将非常感激。

在NodeJS尝试,

 req.query.exhibitorID 

API DOCS

params是req.params,它们不在req.body中