人肉dom+ajax

一、json-server的安装

npm install -g json-server

二、db.json

{
  "books": [
    {
      "id": 1,
      "name": "三体",
      "price": 23.5
    },
    {
      "id": 2,
      "name": "流浪地球",
      "price": 100
    },
    {
      "name": "某书",
      "price": "23.5",
      "id": 3
    },
    {
      "name": "某书",
      "price": "23.5",
      "id": 4
    },
    {
      "name": "某书",
      "price": "23.5",
      "id": 5
    },
    {
      "name": "某书",
      "price": "23.5",
      "id": 6
    },
    {
      "name": "某书",
      "price": "23.5",
      "id": 7
    },
    {
      "name": "某书",
      "price": "23.5",
      "id": 8
    },
    {
      "name": "某书",
      "price": "23.5",
      "id": 9
    }
  ]
}

三、index.html




    
    Title
    



    

你可能感兴趣的:(人肉dom+ajax)