douqi1928 2018-05-14 22:42
浏览 85
已采纳

WordPress Custom Plugin按钮onclick调用php函数

My plugin shows 2 input fields and a button wherever you put the placeholder in WP. After clicking the button it calls a js function which should start a php function using AJAX but somehow i get the error message: "reference error myAjax is not defined"

wsn-plugin.php

function wpb_new_company(){
    echo '<input type="text" class="form-control" id="companyName" placeholder="Firmenname">';
    echo '<input type="text" class="form-control" id="companyYear" placeholder="Jahr">';
    echo '<button onclick="myAjax();" id="btnNewCompany" type="submit" class="btn btn-primary">Erstellen</button>';
}

script.js (which handles all the events)

function myAjax() {
    alert("myAjax gestartet");
      $.ajax({
           type: "POST",
           url: 'localhost/wp/wp-content/plugins/wsn-plugin/wsn-plugin.php',
           data:{action:'call_this'},
           success:function(html) {
             alert(html);
           }

      });
      alert("myAjax ausgeführt");
 }

and again wsn-plugin.php which should then run some function

if($_POST['action'] == 'call_this') {
    echo "i reached it";
}

Changed

function wpb_adding_scripts() {
wp_register_script('wsn_script', plugins_url('script.js', __FILE__), array('jquery'),'1.1', true);
wp_enqueue_script('wsn_script');
}
add_action( 'wp_enqueue_scripts', 'wpb_adding_scripts' );

and js script:

function myAjax() {
    alert("myAjax gestartet");
      $.ajax({
           type: "POST",
           url: '/wp/wp-content/plugins/wsn-plugin/wsn-plugin.php',
           data:{action:'call_this'},
           success:function(html) {
             alert(html);
           }

      });
      alert("myAjax ausgeführt");
 }

no chrome shows the error message: localhost says
fatal error uncaught error call to undefined function add_action() in wsn-plugin.php:16

  • 写回答

2条回答 默认 最新

  • douao1579 2018-05-15 16:08
    关注

    just for completion what i did to reach my goal was. I put some comments in front of the code lines. However I'm not certain if they are correct but at the moment they help at least me to understand it a little bit better.

        my plugin php file:
    
        //reference to the backend ajax framework   
        add_action( 'wp_enqueue_scripts', 'ajax_test_enqueue_scripts' );
        function ajax_test_enqueue_scripts() {
            wp_enqueue_script( 'test', plugins_url( '/test.js', __FILE__ ), array('jquery'), '1.0', true );
            wp_localize_script( 'test', 'ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) );
        }
    
        // to reference the ajax call to this function
        add_action( 'wp_ajax_nopriv_call_this', 'new_company_variable_transfer' );
        function new_company_variable_transfer() {
            echo 'Did we get here?';
            wp_die();
        }
    
     result div
        function wpb_new_company(){
            echo '<input type="text" class="form-control" id="companyName" placeholder="Firmenname">';
            echo '<input type="text" class="form-control" id="companyYear" placeholder="Jahr">';
            echo '<button onclick="callAjax()" id="btnNewCompany" type="submit" class="btn btn-primary">Erstellen</button>';
    
            echo '<div id="result">Hier steht das resultat</div>';
        }
        //to be able to put it on any page with the shortcode [new_company]
        add_shortcode('new_company', 'wpb_new_company');
    

    and the simple ajax call in the script file

        function callAjax(){
            $.ajax({
                type: "POST",
                url: ajax_object.ajax_url,
                data:{action:'call_this'},
                success:function(response) {
                alert(response);
                $("#result").html(response);
                }
            });
        }
    

    And to show you the result visually the pictures of the steps

    Unfortunately because of the stack overflow code correction i cannot post pictures here...

    At the end you can see it changed the text to the variable we get from the php file

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元