最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugins - Send Contact form 7 data to remote server using .NET api

programmeradmin0浏览0评论
Closed. This question is off-topic. It is not currently accepting answers.

Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.

Closed 5 years ago.

Improve this question

Problem

  • I want to send my wordpress form data to my .Net API. Link of my api

  • :49172/API/api/addonlinebookings?jsonData=@test

  • I am using Contact form 7 and also use contact form 7 to api plugin in wordpress.

Error

When form is submitted than error show in plugin

Curl error: 7 Failed to connect to remote

Error detail

If i try to send form data to my api using jquery with simple input field for testing purpose still not get any response.

<form action=":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)

  1. 暂无评论