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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用甜蜜警報 2 向?qū)ο筇砑渔I值項時出現(xiàn)問題

使用甜蜜警報 2 向?qū)ο筇砑渔I值項時出現(xiàn)問題

一只甜甜圈 2022-11-11 15:01:47
我在通過 Sweet Alert 捕獲輸入值時遇到問題。我正在發(fā)送一個名為 data 的對象,然后我需要在該對象中推送一個鍵值項,但無法包含它。$("#Enviar").click(function (e) {e.preventDefault();var venta_id = $('#venta_id').val();var total = $('#total').val().replace(".", "");var descuento = $('#descuento').val();var abono = $('#abono').val();var saldo = $('#saldo').val();var comentarios = $('#comentarios').val();var fechaEntrega = $('#fechaEntrega').val();var vendedor = $('#vendedor').val();var formaPago = $('#formaPago').val();var tipoDoc = $('#tipoDoc').val();var token = '{{csrf_token()}}';var data={_token:token,venta_id:venta_id,totalAPagar:total,descuento:descuento,abono:abono,saldo:saldo,comentarios:comentarios,fechaEntrega:fechaEntrega,vendedor:vendedor,formaPago:formaPago,tipoDoc:tipoDoc};Swal.fire({  title: 'Multiple inputs',  html:'<input id="swal-input1" class="swal2-input">',  focusConfirm: false,  type: 'info',  preConfirm: () => {    return [      document.getElementById('swal-input1').value    ]  }}).then((result) => {    if (result.value) {       //const numeroDoc = result.value;       console.log(result.value);      data.push({numeroDoc:numeroDoc});            //THIS IS WHERE I CANT INCLUDE THE VALUE    }}).then(function(){$.ajax({    type: "post",    url: "{{route('ventaCorrecta')}}",    data: data,    success: function (msg) {      swal({          title: '?Venta realizada!',          text: 'La venta ha sido registrada en el sistema',          type: 'success',          allowOutsideClick: "false"        }).then(function() {            window.location.href = "{{route('home')}}";        })      }  });});});
查看完整描述

1 回答

?
有只小跳蛙

TA貢獻1824條經(jīng)驗 獲得超8個贊

看起來您正試圖在一個不是有效函數(shù)push的對象 ( ) 上使用。data


相反,您必須numeroDoc使用點表示法將屬性添加到對象。


if (result.value) {

  data.numeroDoc = result.value;

}

有關(guān)使用對象的更多信息,請訪問MDN 頁面。


查看完整回答
反對 回復(fù) 2022-11-11
  • 1 回答
  • 0 關(guān)注
  • 88 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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