-1
我想創建一個API來檢索數據庫中使用symfony2原則的字段,但查詢總是返回未找到的結果。這是我嘗試使用symfony教條檢索數據庫表中的字段
/**
* @Route("/get/{email}")
*/
public function emailAction($email)
{
$singleresult = $this->getDoctrine()->getRepository('Api3Bundle:Influ')->find($email);
if ($singleresult === null) {
return new View("user not found", Response::HTTP_NOT_FOUND);
}
請我怎麼能修改上面的網址,以便在調用URI端點讓它在參數返回的電子郵件。
請閱讀[我該怎麼辦問一個好問題?](http://stackoverflow.com/help/how-to-ask)並相應地更新你的問題。 –
Try - > findOneBy(array('email'=> $ email))而不是 - > find($ email) –
Thanks Mathieu .... – Float