第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用 Php ajax 記錄而不是添加到數(shù)據(jù)庫(kù)中

使用 Php ajax 記錄而不是添加到數(shù)據(jù)庫(kù)中

PHP
慕桂英3389331 2022-01-02 18:14:18
我正在使用 php ajax 創(chuàng)建簡(jiǎn)單的 crud 系統(tǒng)。在 crud 系統(tǒng)中,我還添加了圖像。但是當(dāng)我填寫數(shù)據(jù)并瀏覽圖像并單擊添加按鈕時(shí),記錄未添加到數(shù)據(jù)庫(kù)中。到目前為止我嘗試了什么我附加了下面。控制臺(tái)上沒有顯示錯(cuò)誤。我認(rèn)為可能是 jquery 發(fā)送表單值和圖像數(shù)據(jù)的問(wèn)題:{form_data: form_data,data: data},表格設(shè)計(jì) <form role="form" id="frmcompany" class="card" enctype="multipart/form-data">        <div align="left">            <h3>Company</h3>        </div>        <div align="left">            <label class="form-label">Company name</label>            <input type="text" class="form-control" placeholder="Patient No" id="cno" name="cno" size="30px" required>        </div>        <div align="left">            <label class="form-label">Country</label>            <input type="text" class="form-control" placeholder="Patient Name" id="coutry" name="coutry" size="30px" required>        </div>        <div align="left">            <label class="form-label">Currency</label>            <input type="text" class="form-control" placeholder="Phone" id="currency" name="currency" size="30px" required>        </div>        <div align="left">            <label class="form-label">Address</label>            <input type="text" class="form-control" placeholder="Address" id="address" name="address" size="30px" required>        </div>            <div align="left">                <div class="fileuploader fileuploader-theme-default">                    <input type="hidden" name="fileuploader-list-files_" value="[]">                    <input type="file" id="file" name="file" >                    <div class="fileuploader-items">                        <ul class="fileuploader-items-list"></ul>                    </div>                </div>            </div>        </br>        <div align="right">            <button type="button" id="save" class="btn btn-info" onclick="addPatient()">Add</button>            <button type="button" id="clear" class="btn btn-warning" onclick="reset()">Reset</button>        </div>    </form>
查看完整描述

2 回答

?
慕哥6287543

TA貢獻(xiàn)1831條經(jīng)驗(yàn) 獲得超10個(gè)贊

你不能FormData在另一個(gè)對(duì)象中發(fā)送一個(gè)對(duì)象。所有 POST 參數(shù)都必須在form_data.


function addPatient() {

  if ($("#frmcompany").valid()) {

    var url = '';

    var data = '';

    var method = '';

    var form_data = new FormData(document.getElementById("frmcompany"));

    var upload_date = $('#file').prop('files')[0];

    form_data.append('file', upload_date);


    if (isNew == true) {

      url = 'php/add_patient.php';

      data = $('#frmcompany').serialize();

      method = 'POST';

    }


    $.ajax({

      type: method,

      url: url,

      dataType: 'JSON',

      cache: false,

      contentType: false,

      processData: false,

      data: form_data,

      success: function(data) {

        if (isNew == true) {

          alert("Company Addedd");

        }

      }

    });

  }

}


查看完整回答
反對(duì) 回復(fù) 2022-01-02
?
鳳凰求蠱

TA貢獻(xiàn)1825條經(jīng)驗(yàn) 獲得超4個(gè)贊

 function addPatient()

{

    var upload_date = $('#file').prop('files')[0];

    var form_data = new FormData();

    form_data.append('file', upload_date);


      $.ajax({

            url: 'php/add_patient.php',

            cache: false,

            contentType: false,

            processData: false,

            data: form_data,

            type: 'POST',

            success: function(response) {

                console.log(response);

            },

            error: function(error) {

                console.log(error);

            }

        });

}


查看完整回答
反對(duì) 回復(fù) 2022-01-02
  • 2 回答
  • 0 關(guān)注
  • 154 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)