duandaotuo5542 2015-11-28 03:46
浏览 96

如何将ajax post响应保存到数据库中?

My code is here.

<script type="text/javascript">
    function test(){
        alert('return sent');
        $.ajax({
            type: "POST",
            url: "http://remotewebsite.com/process.php",
            data: somedata;
            dataType:'text'; //or HTML, JSON, etc.
            success: function(response){
                alert(response);
                //echo what the server sent back...
            }
        });
    }
</script>

But how can i save that response coming from remote website in to my database? And how can i send multiple input?

  • 写回答

1条回答 默认 最新

  • douxieti6851 2015-12-04 01:51
    关注
    $.ajax({
        type: "POST",
        url: "http://remotewebsite.com/process.php",
        data: somedata;
        dataType: 'text'; //or HTML, JSON, etc. 
        success: function(response) {
            alert(response);
            $.ajax({
                type: "POST",
                url: "youphppagewhereyoudothesavingindatabase",
                data: response;
                dataType: 'text'; //or HTML, JSON, etc. 
                success: function(data) {
                    console.log(data);
                    alert("Saved in database")
                }
            });
        }
    });
    

    Have it something like this

    评论

报告相同问题?

悬赏问题

  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入