You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to work with flask + sijax in a blueprint context, the request is sent to the target callback function 'on_click_test' however the 'obj_response' is not doing any thing, even I added the
<script type="text/javascript">{{ g.sijax.get_js()|safe }}</script> to the page. What could be the reason that request is sent but response not ?
The text was updated successfully, but these errors were encountered:
I had done:
if g.sijax.is_sijax_request:
g.sijax.register_object(SijaxHandler)
return g.sijax.process_request()
in a separate function to organize my program and I have called it in the view function
that causes an error of producing the response so I have moved that block of code back to the view function and it works just fine but I don't understand why it works now and it wasn't working ( returning a response ) !????!?
<script type="text/javascript">{{ g.sijax.get_js()|safe }}</script> to the page. What could be the reason that request is sent but response not ?I'm trying to work with flask + sijax in a blueprint context, the request is sent to the target callback function 'on_click_test' however the 'obj_response' is not doing any thing, even I added the
The text was updated successfully, but these errors were encountered: