将表格数据发送到Wordpress中的api

时间:2018-07-22 18:22:49

标签: .net wordpress forms api

问题

错误

  • 提交表单时,插件中显示错误
  

卷曲错误:7无法连接到远程

Error detail

如果我尝试使用带有用于测试目的的简单输入字段的jquery将表单数据发送到我的api,仍然无法获得任何响应。

 <form action="https://remote.hhds.com.au:49172/API/api/addonlinebookings? 
jsonData=@test" id="myformID">
  <input type="text" name="fname">
  <input type="submit" name="Send">
 </form>



  $(document).ready(function($){
    $("form#myformID").on( "submit", function(event){
        event.preventDefault();
        event.stopPropagation();
        alert("test");

        // Get some values from elements on the page:
        var $form = $( this ),
            $data = {
                FirstName: $form.find( "input[name='fname']" ).val()
            },
            url = $form.attr( "action" );

        // Send the data using post
        var posting = $.post( url, $data );

        posting.done(function( data ) {
            //Do whatever you need with the returned data here.
            console.log(data);
            alert(data);
        });

    });
});

0 个答案:

没有答案