在GET请求中发送两个参数

时间:2015-09-17 18:41:25

标签: vert.x

我使用vertx框架很新,在文档中我看不出如何在GET请求中发送两个参数的愚蠢之处。到目前为止,我试过这个。

ax.axes[0].errorbar(x,y,yerr=std)

然后在服务器端

IndexError

但后来我可以看到 $.getJSON('/user/'+ attributeName + ":"+value, function (data) { userListData = data; $.each(data, function () { $('#userInfoName').text(data.fullname); $('#userInfoAge').text(data.age); $('#userInfoGender').text(data.gender); $('#userInfoLocation').text(data.location); }); }); 不仅得到了第一个参数的值,而且是第二个参数的一部分,非常奇怪。

1 个答案:

答案 0 :(得分:1)

你可能做错了。您可以将其作为单个参数获取,然后使用“:”拆分或在网址中定义两个参数为... /:attribname /:value / ... 两者都将处理您的要求