Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JSON parsing error syntax error unexpected end of input

I got the following piece of code

function pushJsonData(productName) {     $.ajax({         url: "/knockout/SaveProduct",         type: "POST",         contentType: "application/json",         dataType: "json",         data: " { \"Name\" : \"AA\" } ",         async: false,         success: function () {             loadJsonData();            },         error: function (jqXHR, textStatus, errorThrown) {           alert(textStatus + " in pushJsonData: " + errorThrown + " " + jqXHR);         }     }); } 

Notice that I hard coded the data value. The data get pushed into the database fine. However, I keep getting the error

parsing error syntax error unexpected end of input

I am sure my data is in correct JSON syntax. When I checked with on Network of Chrome inspector the saveProduct request showed the data is correct.

{ "Name": "AA" } 

This POST request did not have response. So I am clueless as to where the parse error was coming from. I tried using FireFox browser. the same thing happened.

Can anyone give some idea as to what is wrong?

Thanks,

P.S. Here is the controller code

namespace MvcApplJSON.Controllers {     public class KnockoutController : Controller     {         //         // GET: /Knockout/          public ActionResult Index()         {             return View();         }          [HttpGet]         public JsonResult GetProductList()         {             var model = new List<Product>();             try             {                 using (var db = new KOEntities())                 {                     var product = from p in db.Products orderby p.Name select p;                     model = product.ToList();                 }             }             catch (Exception ex)             { throw ex; }             return Json(model, JsonRequestBehavior.AllowGet);         }         [HttpPost]         public void SaveProduct (Product product)         {             using (var db = new KOEntities())             {                 db.Products.Add(new Product { Name = product.Name, DateCreated = DateTime.Now });                 db.SaveChanges();             }         }     } } 
like image 974
Shawn Avatar asked Dec 29 '13 16:12

Shawn


People also ask

What does unexpected end of input mean in Javascript?

Usually the Uncaught SyntaxError: Unexpected end of input error in JavaScript occurs due to missing parentheses, bracket, or quote. However, it can also happen when we try to parse an empty JSON. It could be that the extension that you are using is trying to run a javascript code where either of the above is true.

What is JSON input?

The JSON Input step determines what rows to input based on the information you provide in the option tabs. This preview function helps you to decide if the information provided accurately models the rows you are trying to retrieve.

What is JSON parse?

JSON parsing is the process of converting a JSON object in text format to a Javascript object that can be used inside a program. In Javascript, the standard way to do this is by using the method JSON. parse() , as the Javascript standard specifies.


2 Answers

I can't say for sure what the problem is. Could be some bad character, could be the spaces you have left at the beginning and at the end, no idea.

Anyway, you shouldn't hardcode your JSON as strings as you have done. Instead the proper way to send JSON data to the server is to use a JSON serializer:

data: JSON.stringify({ name : "AA" }), 

Now on the server also make sure that you have the proper view model expecting to receive this input:

public class UserViewModel {     public string Name { get; set; } } 

and the corresponding action:

[HttpPost] public ActionResult SaveProduct(UserViewModel model) {     ... } 

Now there's one more thing. You have specified dataType: 'json'. This means that you expect that the server will return a JSON result. The controller action must return JSON. If your controller action returns a view this could explain the error you are getting. It's when jQuery attempts to parse the response from the server:

[HttpPost] public ActionResult SaveProduct(UserViewModel model) {     ...     return Json(new { Foo = "bar" }); } 

This being said, in most cases, usually you don't need to set the dataType property when making AJAX request to an ASP.NET MVC controller action. The reason for this is because when you return some specific ActionResult (such as a ViewResult or a JsonResult), the framework will automatically set the correct Content-Type response HTTP header. jQuery will then use this header to parse the response and feed it as parameter to the success callback already parsed.

I suspect that the problem you are having here is that your server didn't return valid JSON. It either returned some ViewResult or a PartialViewResult, or you tried to manually craft some broken JSON in your controller action (which obviously you should never be doing but using the JsonResult instead).

One more thing that I just noticed:

async: false, 

Please, avoid setting this attribute to false. If you set this attribute to false you are are freezing the client browser during the entire execution of the request. You could just make a normal request in this case. If you want to use AJAX, start thinking in terms of asynchronous events and callbacks.

like image 171
Darin Dimitrov Avatar answered Sep 22 '22 12:09

Darin Dimitrov


I was using a Node http request and listening for the data event. This event only puts the data into a buffer temporarily, and so a complete JSON is not available. To fix, each data event must be appended to a variable. Might help someone (http://nodejs.org/api/http.html).

like image 44
Ben Avatar answered Sep 22 '22 12:09

Ben