我正在尝试使用 jQuery $.get 从站点获取一些数据。我需要设置2个相同类型的参数:
..&q=Some Text&q=Some other text
jQuery 似乎用第二个和只发送 1 覆盖了 q 的第一个实例。有什么办法解决这个问题吗?
这是我试图使用的代码:
var params = {
"otherParam":"x",
"q":text,
"q":title
};
$.get(url, params, mySuccessFunction);