美文网首页
js error ajax Uncaught TypeError

js error ajax Uncaught TypeError

作者: hello大象 | 来源:发表于2017-11-23 06:50 被阅读0次
image.png
image.png

原因是ajax的书写不准确:dataType,一定要大写。否则ajax不生效,即输出类型有误

$.ajax({
                url:"{:U('Goods/getAttributeByTypeUpd')}",//请求哪个地址
                data:{'type_id':type_id,'goods_id':goods_id},//条件值
                datatype:'json',//服务器返回类型
                type:'get',//以什么方式过去的
                success:function(msg){
                    //遍历msg,获得其中的数据,再和tr/td等标签组合显示到页面上
                    var s = "";

相关文章

网友评论

      本文标题:js error ajax Uncaught TypeError

      本文链接:https://www.haomeiwen.com/subject/zqsovxtx.html