一、获取数据

1-1、get

  1. $.get(url,res=>{
  2. console.log(res)
  3. })
  4. $.get(url).then(res=>{
  5. console.log(res)
  6. })
  1. $.get("http://192.168.4.18:3000/search?keywords=你").then(res=>{
  2. console.log(res)
  3. })

1-2、$.ajax

  1. window.onload = function(){
  2. $.ajax({
  3. type:"get",
  4. url:"xx",
  5. dataType:"json",
  6. success:function(data){
  7. console.log(data);
  8. },
  9. error:function(xhr){
  10. document.body.innerHTML = xhr.status;
  11. }
  12. })

get传值问号后面的值,可以放在data属性里面

  1. $.ajax({
  2. url,
  3. type:"get",
  4. data, // get传值问号后面的值,可以放在data属性里面
  5. dataType,
  6. success:res=>{
  7. console.log(res);
  8. }
  9. })
  1. http://192.168.4.18:3000/search?keywords=你
  2. // get 传值 问号后面的值可以放在data属性中
  3. var url="http://192.168.4.18:3000/search";
  4. $.ajax({
  5. url,
  6. type:"get",
  7. data:{
  8. keywords:"你"
  9. },
  10. success:res=>{
  11. // console.log(res)
  12. }
  13. })