gpt4 book ai didi

javascript - Bootstrap 模式使用 post 发送请求

转载 作者:行者123 更新时间:2023-12-03 07:07:52 26 4
gpt4 key购买 nike

我可以使用此代码向服务器发送请求,

$('#wideModal').modal({remote: '/view/code-101'});

但是它使用的是Get方法。

如何使用Post方法发送请求?我有多个数据要在服务器中发送。

最佳答案

根据 docs :

This option is deprecated since v3.3.0 and has been removed in v4. We recommend instead using client-side templating or a data binding framework, or calling jQuery.load yourself.

$('#myModal').on('show.bs.modal', function() {
$.post( "/view/code-101", function( data ) {
$('#myModal .modal-body').html( data );
});
});

关于javascript - Bootstrap 模式使用 post 发送请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36738051/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com