0

私のコントローラーでは、注釈ルートを作成する必要があり、これと同じである必要があります:
/ getservice?from = 2012-06-01&to = 2012-06-25

私はこれを試しましたが、機能していません

/**
 * @Route("/getservice",defaults={"from" = "","to" = ""})
 * @Route("/getservice?from={from}&to={to}")
 * @Template()
 */

何か案は ?

4

2 に答える 2

0

getserviceパーツのルートを作成し、GETリクエストからパラメーターを取得するだけです。

/**
 * @Route("/getservice")
 * @Template()
 */
public function getServiceAction (Request $request) {

    $from = $request->query->get('from');
    $to = $request->query->get('to');
    ...
于 2012-08-20T21:06:27.117 に答える
0

あなたもこのようなことをすることができます

/**
 * @Route("/getservice/{from}/{to}")
 * @Template()
 */
public function getServiceAction($from, $to){
  // ...
}
于 2012-08-20T22:43:45.667 に答える