Hi, It sounds like you click "submit" and then get a page showing the raw json? That sounds like it could be a bug in your code. Either the event handler is not connected, or there's an error. You could try checking "Preserve Log" in the developer console.
Collin On Thursday, February 19, 2015 at 5:06:59 PM UTC-5, elcaiaimar wrote: > > I mean in a correct form. My code doesn't work. It seems like the JS code > doesn't receive the jsonresponse. > I get a page with {"status":"True","product_id":p.id} But this should be > read for the JS code, and if it's True show an alert saying Remove it! > > Is there anything wrong in my code? > > El jueves, 19 de febrero de 2015, 21:49:59 (UTC+1), Vijay Khemlani > escribió: >> >> What do you mean with "in a good way"? Does your code work? >> >> On Thu, Feb 19, 2015 at 4:14 PM, elcaiaimar <sep...@gmail.com> wrote: >> >>> Hello, >>> >>> I was wondering how I can send a response JSON in a good way, because I >>> have the next code: >>> >>> if "product_id" in request.POST: >>> try: >>> id_producto = request.POST['product_id'] >>> p = Pozo.objects.get(pk=id_producto) >>> mensaje = {"status":"True","product_id":p.id} >>> p.delete() # Elinamos objeto de la base de datos >>> return JsonResponse(mensaje) >>> except: >>> mensaje = {"status":"False"} >>> return JsonResponse(mensaje) >>> >>> And my JS function doesn't work with this code: >>> >>> var options = { >>> success:function(response) >>> { >>> if(response.status=="True"){ >>> alert("Eliminado!"); >>> var idProd = response.product_id; >>> var elementos= $(nombre_tabla+' >tbody >tr').length; >>> if(elementos==1){ >>> location.reload(); >>> }else{ >>> $('#tr'+idProd).remove(); >>> $(nombre_ventana_modal).modal('hide'); >>> } >>> }else{ >>> alert("Hubo un error al eliminar!"); >>> $(nombre_ventana_modal).modal('hide'); >>> }; >>> } >>> }; >>> $(nombre_formulario_modal).ajaxForm(options); >>> }); >>> >>> And I don't know what I can do. Does anyone have any idea? >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Django users" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to django-users...@googlegroups.com. >>> To post to this group, send email to django...@googlegroups.com. >>> Visit this group at http://groups.google.com/group/django-users. >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/django-users/2cfc6283-ee2f-4280-b086-2dc1595855c8%40googlegroups.com >>> >>> <https://groups.google.com/d/msgid/django-users/2cfc6283-ee2f-4280-b086-2dc1595855c8%40googlegroups.com?utm_medium=email&utm_source=footer> >>> . >>> For more options, visit https://groups.google.com/d/optout. >>> >> >> -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/6d1cd6bc-25ce-4c05-907b-312a17feda1b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.