symfony Redirect to an other page after true comparison of request from ajax
I have a function in my JavaScript that returns data. I would like to send data to my controller and do a test with that data from my js. Then, if true, I want to display another page.
$.ajax(
type: "POST",
url: path,
data: s_certifiedNir: a.Patients[0].s_certifiedNir ,
success: function (data)
console.log('yooo' + a.Patients[0].s_certifiedNir) ;
,
error: function ()
alert('ko');
);
Here is my controller :
public function getCpsInfosAction(Request $request)
$nir= $request->get('s_certifiedNir');
if ($request->isXmlHttpRequest())
$encoders = array(new XmlEncoder(), new JsonEncoder());
$normalizers = array(new ObjectNormalizer());
$serializer = new Serializer($normalizers, $encoders);
$data = $serializer->normalize($nir);
if ($data=='2550699999999 34')
return $this->redirectToRoute('test');
//return new JsonResponse($data);
I got ko and There are no registered paths for namespace " DMP".
DMP is the first route of my page.
javascript php ajax symfony redirect
add a comment |
I have a function in my JavaScript that returns data. I would like to send data to my controller and do a test with that data from my js. Then, if true, I want to display another page.
$.ajax(
type: "POST",
url: path,
data: s_certifiedNir: a.Patients[0].s_certifiedNir ,
success: function (data)
console.log('yooo' + a.Patients[0].s_certifiedNir) ;
,
error: function ()
alert('ko');
);
Here is my controller :
public function getCpsInfosAction(Request $request)
$nir= $request->get('s_certifiedNir');
if ($request->isXmlHttpRequest())
$encoders = array(new XmlEncoder(), new JsonEncoder());
$normalizers = array(new ObjectNormalizer());
$serializer = new Serializer($normalizers, $encoders);
$data = $serializer->normalize($nir);
if ($data=='2550699999999 34')
return $this->redirectToRoute('test');
//return new JsonResponse($data);
I got ko and There are no registered paths for namespace " DMP".
DMP is the first route of my page.
javascript php ajax symfony redirect
2
I don't think you can redirect from ajax; the controller should just do the check and return the result, and then the JS should do the redirect (ex: window.location)
– zedling
Nov 12 '18 at 11:55
i know but the problem i should compare the result of ajaw with an information from the data base so i should pass by the controller
– EsanteDev
Nov 12 '18 at 12:47
add a comment |
I have a function in my JavaScript that returns data. I would like to send data to my controller and do a test with that data from my js. Then, if true, I want to display another page.
$.ajax(
type: "POST",
url: path,
data: s_certifiedNir: a.Patients[0].s_certifiedNir ,
success: function (data)
console.log('yooo' + a.Patients[0].s_certifiedNir) ;
,
error: function ()
alert('ko');
);
Here is my controller :
public function getCpsInfosAction(Request $request)
$nir= $request->get('s_certifiedNir');
if ($request->isXmlHttpRequest())
$encoders = array(new XmlEncoder(), new JsonEncoder());
$normalizers = array(new ObjectNormalizer());
$serializer = new Serializer($normalizers, $encoders);
$data = $serializer->normalize($nir);
if ($data=='2550699999999 34')
return $this->redirectToRoute('test');
//return new JsonResponse($data);
I got ko and There are no registered paths for namespace " DMP".
DMP is the first route of my page.
javascript php ajax symfony redirect
I have a function in my JavaScript that returns data. I would like to send data to my controller and do a test with that data from my js. Then, if true, I want to display another page.
$.ajax(
type: "POST",
url: path,
data: s_certifiedNir: a.Patients[0].s_certifiedNir ,
success: function (data)
console.log('yooo' + a.Patients[0].s_certifiedNir) ;
,
error: function ()
alert('ko');
);
Here is my controller :
public function getCpsInfosAction(Request $request)
$nir= $request->get('s_certifiedNir');
if ($request->isXmlHttpRequest())
$encoders = array(new XmlEncoder(), new JsonEncoder());
$normalizers = array(new ObjectNormalizer());
$serializer = new Serializer($normalizers, $encoders);
$data = $serializer->normalize($nir);
if ($data=='2550699999999 34')
return $this->redirectToRoute('test');
//return new JsonResponse($data);
I got ko and There are no registered paths for namespace " DMP".
DMP is the first route of my page.
javascript php ajax symfony redirect
javascript php ajax symfony redirect
edited Nov 12 '18 at 11:43
cezar
5,58232454
5,58232454
asked Nov 12 '18 at 11:17
EsanteDevEsanteDev
84
84
2
I don't think you can redirect from ajax; the controller should just do the check and return the result, and then the JS should do the redirect (ex: window.location)
– zedling
Nov 12 '18 at 11:55
i know but the problem i should compare the result of ajaw with an information from the data base so i should pass by the controller
– EsanteDev
Nov 12 '18 at 12:47
add a comment |
2
I don't think you can redirect from ajax; the controller should just do the check and return the result, and then the JS should do the redirect (ex: window.location)
– zedling
Nov 12 '18 at 11:55
i know but the problem i should compare the result of ajaw with an information from the data base so i should pass by the controller
– EsanteDev
Nov 12 '18 at 12:47
2
2
I don't think you can redirect from ajax; the controller should just do the check and return the result, and then the JS should do the redirect (ex: window.location)
– zedling
Nov 12 '18 at 11:55
I don't think you can redirect from ajax; the controller should just do the check and return the result, and then the JS should do the redirect (ex: window.location)
– zedling
Nov 12 '18 at 11:55
i know but the problem i should compare the result of ajaw with an information from the data base so i should pass by the controller
– EsanteDev
Nov 12 '18 at 12:47
i know but the problem i should compare the result of ajaw with an information from the data base so i should pass by the controller
– EsanteDev
Nov 12 '18 at 12:47
add a comment |
1 Answer
1
active
oldest
votes
Why not just set the redirect URL in the response and handle it in your JS?:
public function getCpsInfosAction(Request $request)
if ($request->isXmlHttpRequest())
// ...
if ($data === '2550699999999 34')
return new JsonResponse([
'success' => true,
'redirect' => $this->generateUrl('your_route');
]);
return new JsonResponse(['success' => false]); // else..
Then just run the redirect from JavaScript:
$.ajax(
// ...
success: function (data)
if (data.success)
window.location.href = data.redirect; // <-- HERE
,
// ...
);
it works thank you but how can i send a lot of inforation , i mean i send an object of data
– EsanteDev
Nov 13 '18 at 13:39
@EsanteDev You can "send" whatever you want in yourJsonResponse
likereturn new JsonResponse(['success' => true, 'redirect' => $this->genUrl('route'), 'time' => new DateTime(), 'current_item' => $someEntity, 'blah' => 'blah']);
and all of those will be accessible in your JS/jQuery success function viadata.blah
ordata.current_item
etc. Cheers
– Yes Barry
Nov 14 '18 at 18:07
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53261042%2fsymfony-redirect-to-an-other-page-after-true-comparison-of-request-from-ajax%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Why not just set the redirect URL in the response and handle it in your JS?:
public function getCpsInfosAction(Request $request)
if ($request->isXmlHttpRequest())
// ...
if ($data === '2550699999999 34')
return new JsonResponse([
'success' => true,
'redirect' => $this->generateUrl('your_route');
]);
return new JsonResponse(['success' => false]); // else..
Then just run the redirect from JavaScript:
$.ajax(
// ...
success: function (data)
if (data.success)
window.location.href = data.redirect; // <-- HERE
,
// ...
);
it works thank you but how can i send a lot of inforation , i mean i send an object of data
– EsanteDev
Nov 13 '18 at 13:39
@EsanteDev You can "send" whatever you want in yourJsonResponse
likereturn new JsonResponse(['success' => true, 'redirect' => $this->genUrl('route'), 'time' => new DateTime(), 'current_item' => $someEntity, 'blah' => 'blah']);
and all of those will be accessible in your JS/jQuery success function viadata.blah
ordata.current_item
etc. Cheers
– Yes Barry
Nov 14 '18 at 18:07
add a comment |
Why not just set the redirect URL in the response and handle it in your JS?:
public function getCpsInfosAction(Request $request)
if ($request->isXmlHttpRequest())
// ...
if ($data === '2550699999999 34')
return new JsonResponse([
'success' => true,
'redirect' => $this->generateUrl('your_route');
]);
return new JsonResponse(['success' => false]); // else..
Then just run the redirect from JavaScript:
$.ajax(
// ...
success: function (data)
if (data.success)
window.location.href = data.redirect; // <-- HERE
,
// ...
);
it works thank you but how can i send a lot of inforation , i mean i send an object of data
– EsanteDev
Nov 13 '18 at 13:39
@EsanteDev You can "send" whatever you want in yourJsonResponse
likereturn new JsonResponse(['success' => true, 'redirect' => $this->genUrl('route'), 'time' => new DateTime(), 'current_item' => $someEntity, 'blah' => 'blah']);
and all of those will be accessible in your JS/jQuery success function viadata.blah
ordata.current_item
etc. Cheers
– Yes Barry
Nov 14 '18 at 18:07
add a comment |
Why not just set the redirect URL in the response and handle it in your JS?:
public function getCpsInfosAction(Request $request)
if ($request->isXmlHttpRequest())
// ...
if ($data === '2550699999999 34')
return new JsonResponse([
'success' => true,
'redirect' => $this->generateUrl('your_route');
]);
return new JsonResponse(['success' => false]); // else..
Then just run the redirect from JavaScript:
$.ajax(
// ...
success: function (data)
if (data.success)
window.location.href = data.redirect; // <-- HERE
,
// ...
);
Why not just set the redirect URL in the response and handle it in your JS?:
public function getCpsInfosAction(Request $request)
if ($request->isXmlHttpRequest())
// ...
if ($data === '2550699999999 34')
return new JsonResponse([
'success' => true,
'redirect' => $this->generateUrl('your_route');
]);
return new JsonResponse(['success' => false]); // else..
Then just run the redirect from JavaScript:
$.ajax(
// ...
success: function (data)
if (data.success)
window.location.href = data.redirect; // <-- HERE
,
// ...
);
answered Nov 12 '18 at 16:13
Yes BarryYes Barry
7,83133652
7,83133652
it works thank you but how can i send a lot of inforation , i mean i send an object of data
– EsanteDev
Nov 13 '18 at 13:39
@EsanteDev You can "send" whatever you want in yourJsonResponse
likereturn new JsonResponse(['success' => true, 'redirect' => $this->genUrl('route'), 'time' => new DateTime(), 'current_item' => $someEntity, 'blah' => 'blah']);
and all of those will be accessible in your JS/jQuery success function viadata.blah
ordata.current_item
etc. Cheers
– Yes Barry
Nov 14 '18 at 18:07
add a comment |
it works thank you but how can i send a lot of inforation , i mean i send an object of data
– EsanteDev
Nov 13 '18 at 13:39
@EsanteDev You can "send" whatever you want in yourJsonResponse
likereturn new JsonResponse(['success' => true, 'redirect' => $this->genUrl('route'), 'time' => new DateTime(), 'current_item' => $someEntity, 'blah' => 'blah']);
and all of those will be accessible in your JS/jQuery success function viadata.blah
ordata.current_item
etc. Cheers
– Yes Barry
Nov 14 '18 at 18:07
it works thank you but how can i send a lot of inforation , i mean i send an object of data
– EsanteDev
Nov 13 '18 at 13:39
it works thank you but how can i send a lot of inforation , i mean i send an object of data
– EsanteDev
Nov 13 '18 at 13:39
@EsanteDev You can "send" whatever you want in your
JsonResponse
like return new JsonResponse(['success' => true, 'redirect' => $this->genUrl('route'), 'time' => new DateTime(), 'current_item' => $someEntity, 'blah' => 'blah']);
and all of those will be accessible in your JS/jQuery success function via data.blah
or data.current_item
etc. Cheers– Yes Barry
Nov 14 '18 at 18:07
@EsanteDev You can "send" whatever you want in your
JsonResponse
like return new JsonResponse(['success' => true, 'redirect' => $this->genUrl('route'), 'time' => new DateTime(), 'current_item' => $someEntity, 'blah' => 'blah']);
and all of those will be accessible in your JS/jQuery success function via data.blah
or data.current_item
etc. Cheers– Yes Barry
Nov 14 '18 at 18:07
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53261042%2fsymfony-redirect-to-an-other-page-after-true-comparison-of-request-from-ajax%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
I don't think you can redirect from ajax; the controller should just do the check and return the result, and then the JS should do the redirect (ex: window.location)
– zedling
Nov 12 '18 at 11:55
i know but the problem i should compare the result of ajaw with an information from the data base so i should pass by the controller
– EsanteDev
Nov 12 '18 at 12:47