Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to use Jquery autocomplete in my web application but encounter issues. I am developing my application in ASP.NET and JQuery.

Here's the part of the Autocopmlete 'succes' function:

success: function (data) {
     response($.map(data.d, function (item) {
         return {
              label:  item.key,
             value: item.value
            }
       }));
     },

My webservice returns the following JSON:

"[{"key":"Bread","value":"3"}]"

When I run it I get Javascript error:

Uncaught TypeError: Cannot use 'in' operator to search for '42' in [{"key":"bread","value":"3"}] 

It looks like that the returned JSON is not in the right format for the $.map function from what I can tell. Also the result might return several items, not just one as seen above.

Can anyone help me solve this issue. I am using JSON as the dataType and GET as the type in the Ajax call.

share|improve this question

2 Answers

up vote 4 down vote accepted

I simply suggest you instead of using any other method you can use :

success: function (data, status, xhr) {
    var jsonArray = JSON.parse(data);
}

In this way it will be converted to a simple JavaScript object which you can easily manipulate on your UI/DOM.

share|improve this answer
Thanks, I used your solution with a $.each loop and it works. I've needed to parse the result and then use the for each for put them in an array – Idan Shechter Jan 16 at 18:59
Its a pleasure for me to help you. – Ankur Jain Jan 16 at 19:00

You're right -- your JSON is an array which contains a single object. You're expecting just that object.

Try modifying your code like so:

success: function (data) {
  data = data[0]; 
share|improve this answer
From FireBug: data.d: "[{"key":"bread","value":"3"}]" $.map(data.d[0]): [Exception: TypeError: Cannot use 'in' operator to search for '0' in [] – Idan Shechter Jan 16 at 17:40
Now you're changing things. Is "[{"key":"bread","value":"3"}]" the value of data or data.d? What exactly is in data? – Blazemonger Jan 16 at 18:07
data.d = "[{"key":"bread","value":"3"}]" and data = d: "[{"key":"bread","value":"3"}]" (from firebug) – Idan Shechter Jan 16 at 18:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.