Blog/index?p=2&s=0
のような形式のパラメータを取得する方法です。
##クエリ形式のパラメータの取得
C++
int p = httpRequest().queryItemValue("p").toInt();
int s = httpRequest().queryItemValue("s").toInt();
###パラメータが存在するか確認
C++
if (httpRequest().hasQueryItem("p"))
{
// pというパラメータが存在する
int p = httpRequest().queryItemValue("p").toInt();
}