Jquery Validator を使用して laravel 4 でフォームを検証しようとしていますが、電子メールのリモート検証を実行できない唯一のことです。
ブラウザで次のことを試しました
http://example.com/validacion/email/info@info.com
そして、私が望む結果を(jsonで)取得します。
//Routes.php
Route::get('validacion/email/{email}', 'ValidatorController@getValidacionEmail');
//In my JS the rule of email is
email: {
required: true,
email: true,
remote: {
url: "/validacion/email/",
type: "get",
data: {
email: "akatcheroff@gmail.com"
},
complete: function(data) {
if (data.responseText !== "true") {
alert(data.respuesta);
}
}
}
そして、Firebugを使用すると、この場所を取得します
http://example.com/validacion/email/?email=akatcheroff%40gmail.com
と 301 コード、その後 500 とこのエラー
{"error":{"type":"Symfony\Component\HttpKernel\Exception\NotFoundHttpException","message":"","file":"C:\Users\Usuario\Dropbox\Public\sitios\futbol\vendor \laravel\framework\src\Illuminate\Routing\Router.php","line":1429}}
ルートがそれを認識する方法で私のメールパラメーターを送信する方法があるかどうか、誰かが知っていますか?
ありがとう!