博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
请求列表与详情展示
阅读量:6828 次
发布时间:2019-06-26

本文共 2066 字,大约阅读时间需要 6 分钟。

hot3.png

<script type="text/javascript">

        
        function getList(){
            $.ajax({
                type: "GET",
                url: "./api/goodsList.json",
                success: function(data){
                    showList(data);
                },
                error: function(){
                    console.log("err")
                }
            })
        }
        getList();
        function showList(data){
            var data = data.list;
            console.log(data);
            var str = '';
            data.forEach(function(ele,index){
               str += '<a href="goodsInfo.html?id='+ ele.id +'">\
                            <div class="goods_item">\
                                <img src = "'+ ele.imgurl[0] + '" alt = "">\
                                <p class="item_name">'+ ele.name + '</p>\
                                <p class="item_price">'+ ele.spectList[0].price + '</p>\
                            </div>\
                        </a>'
            })
            $('.tab_content').html(str);
        }
    </script>

 

 

详情

function getId() {

    var optionList = location.search.slice(1).split('&');

//jsp   news/show/205.html   获取id=205   location.href.split("/").splice(-1).toString().split(".")[0]

    var idNum;
    optionList.forEach(function (ele, index) {
        if (ele.indexOf('id=') != -1) {
            idNum = ele.slice(3);
        }
    })
    return idNum;
}

console.log(getId());

// 通过ID值取到当前ID数据

getGoodList();

function getGoodList() {
    $.ajax({
        type: 'GET',
        url: 'http://localhost:8080/api/goodsList.json',
        success: function (data) {
            createInfo(data);
            // console.log(data);
        },
        error: function () {
            console.log('error');
        }
    })
}
function createInfo(data) {
    var idNum = getId();
    var dataList = data.list;
    var len = dataList.length;
    var listStr = '';
    var liStr = '';
    for (var i = 0; i < len; i++) {
        if (dataList[i].id == idNum) {
            $('.infor_one_img').html('<img src="' + dataList[i].imgurl[0] + '">');
            $('.one_name').html(dataList[i].name);
            dataList[i].spectList.sort(findPrice('price'));
            $('.one_price').html('¥' + dataList[i].spectList[0].price + '-' + dataList[i].spectList[dataList[i].spectList.length - 1].price);
            dataList[i].imgurl.forEach(function (ele, index) {
                listStr += '<img src="' + ele + '">'
            })
            $('.infor_th').append($(listStr));
            dataList[i].spectList.forEach(function (ele, index) {
                liStr = '<li class="buy_spect_li" data-price="' + ele.price + '">' + ele.spect + '</li>'
            })
            $('.buy_spect_wrap ul').html(liStr);
            $('.price_value').html($('.one_price').html());

        }

    }
}

转载于:https://my.oschina.net/parchments/blog/2252056

你可能感兴趣的文章
ubuntu pdf合并方法
查看>>
TCP网络编程流程
查看>>
远程ssh连接过慢,解决方法
查看>>
Extjs API
查看>>
linux基本命令grep egrep fgrep用法以及正则表达式
查看>>
MongoDB 数据库简单介绍(安装篇)
查看>>
近期工作感悟
查看>>
搞了半天原来是DOS换行符的问题^M
查看>>
PHP MYSQL数据库知识记录小知识点
查看>>
我的友情链接
查看>>
cocos2dx程序启动过程,和跨平台实现
查看>>
75、分发系统|expect脚本远程登录和执行命令、传递参数
查看>>
系统集成资质培训 - 英语题目练习(0511)
查看>>
SSH连接速度慢
查看>>
Android ADB 常用命令
查看>>
Nagios/Cacti异常报警,设定总动清理内存
查看>>
HA(高可用)集群之AIS(corosync),高可用httpd+NFS
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
centos知识点巩固
查看>>