首页 > Web开发 > 详细

js 提交表单添加csrf

时间:2017-02-15 10:40:31      阅读:956      评论:0      收藏:0      [点我收藏+]
function post(path, shipmentMap, method) {
    method = method || "post"; // Set method to post by default if not specified.
    var token = $(‘meta[name="_csrf"]‘).attr(‘content‘);
    var tokenName = $(‘meta[name="_csrf_header"]‘).attr(‘content‘);
    console.log(token);
    // The rest of this code assumes you are not using a library.
    // It can be made less wordy if you use one.
    var form = document.createElement("form");
    form.setAttribute("method", method);
    form.setAttribute("action", path);


    var hiddenField = document.createElement("input");
    hiddenField.setAttribute("type", "hidden");
    hiddenField.setAttribute("name", "requestMap");
    hiddenField.setAttribute("value", JSON.stringify(shipmentMap));

    form.appendChild(hiddenField);
    
    var csrfField = document.createElement("input");
    csrfField.setAttribute("type", "hidden");
    csrfField.setAttribute("name", "_csrf");
    csrfField.setAttribute("value", token);

    form.appendChild(csrfField);


    document.body.appendChild(form);
    form.submit();
}

  

js 提交表单添加csrf

原文:http://www.cnblogs.com/ly-radiata/p/6400364.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!