如何正确传递GET的多个参数?

时间:2014-12-07 05:55:43

标签: angularjs

$http({
    url: "http://someurl.php",
    method: "GET",
    params: {topicId: $stateParams.topicId, pageNumber:2}
})

在我的php中我试过这个

echo $_GET["pageNumber"];
echo $_GET["topicId"];

在我的成功回调中,我获得了topicId的值,但pageNumber值为空。

0 个答案:

没有答案