码迷,mamicode.com
首页 > 其他好文 > 详细

TypeError: invalid 'in' operand obj

时间:2016-07-13 21:55:56      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

尝试在程序去访问远程的Web API,它在运行时,出现异常: 

TypeError: invalid ‘in‘ operand obj


技术分享


由于从服务器返回的数据是json。
当我们需要得到这些数据时,还得需要Parse。
因此我们把代码稍微修改一下:
技术分享
 
技术分享
$(function () {
            $.ajax({
                type: "GET",
                url: "http://localhost:9001/api/size",                
                dataType: "json",
                contentType: "application/json; charset=utf-8",
                success: function (data) { 
                    data = $.parseJSON(data);
                    $.each(data, function (index, item) {
                        //...
                    });                  

                },
                error: function (jqXHR, textStatus, errorThrown) {
                    alert(errorThrown);
                }
            });
        });
Source Code

 



TypeError: invalid 'in' operand obj

标签:

原文地址:http://www.cnblogs.com/insus/p/5667571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!