乐知付加密服务平台

如果你有资源, 平台可以帮你实现内容变现, 无需搭建知识付费服务平台。

点击访问官方网站 https://lezhifu.cc

扫码关注公众号 乐知付加密服务平台-微信公众号
js发送请求 | chenzuoli's blog

js发送请求

分js、ajax方式发送http请求。

  1. js
    在js方法内

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    function xxxx() {
    let xhr = new XMLHttpRequest();
    xhr.open("POST", "/admin/qrcode_add");
    xhr.setRequestHeader("Accept", "application/json");
    xhr.setRequestHeader("Content-Type", "application/json");
    xhr.onreadystatechange = function () {
    if (xhr.readyState === 4) {
    console.log(xhr.status);
    console.log(xhr.responseText);
    }};

    xhr.send(JSON.stringify(post_params));
    }
  2. ajax

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    //填写后台给的参数
    var post_params = {"recipient_email": email, "username": username};
    $.ajax({
    type: 'post',
    url: '/send_mail',
    data: JSON.stringify(post_params),
    contentType: 'application/json',
    success: function(res){
    console.log(res);
    }
    });
-------------本文结束感谢您的阅读-------------