Wp-api 2 cookie身份验证

时间:2016-06-16 00:21:47

标签: javascript php wordpress cookies wp-api

所以,我在wordpress(WP-Api 2)中有一个php页面:

<?php
/**
 * Template Name: WP-Api
 */
add_action("wp_enqueue_scripts", "enqueue_");
function enqueue_() {
    wp_localize_script( 'wp-api', 'wpApiSettings', array( 'root' => esc_url_raw( rest_url() ), 'nonce' => wp_create_nonce( 'wp_rest' ) ) );

}
get_header(); ?>

<h1>oi</h1>
<script type="text/javascript">

jQuery.ajax( {
    url: wpApiSettings.root + 'wp/v2/posts/1',
    method: 'POST',
    beforeSend: function ( xhr ) {
        xhr.setRequestHeader( 'X-WP-Nonce', wpApiSettings.nonce );
    },
    data:{
        'title' : 'Hello Moon'
    }
} ).done( function ( response ) {
    console.log( response );
} );

</script>

我想运行此示例,但控制台说

  

未捕获的ReferenceError:未定义wpApiSettings

我做错了什么?谢谢!

1 个答案:

答案 0 :(得分:1)

看一下这里的示例:https://codex.wordpress.org/Function_Reference/wp_localize_script

您需要wp_register_script和wp_enqueue_script,否则将不会创建JS变量。