亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

無法通過 REST API 訪問 WordPress 頁面修訂

無法通過 REST API 訪問 WordPress 頁面修訂

PHP
互換的青春 2023-06-18 16:27:31
我有以下代碼:add_action( 'wp_enqueue_scripts', 'my_enqueue_scripts' );function my_enqueue_scripts() {    wp_enqueue_script( 'my-script', get_template_directory_uri() . '/assets/js/index.js', [ 'jquery' ] );    wp_localize_script( 'my-script', 'myScriptVars', [        'root'  => esc_url_raw( rest_url() ),        'nonce' => wp_create_nonce( 'wp_rest' ),    ] );}jQuery.ajax({    method: 'POST',    url: myScriptVars.root + 'wp/v2/pages/2/revisions/1',    data: { foo: 'bar', baz: 1, _wpnonce: myScriptVars.nonce },    dataType: 'json',    success: function ( data ) {        console.log( data );    },});但是我在控制臺中收到 404 錯誤。我究竟做錯了什么?
查看完整描述

1 回答

?
縹緲止盈

TA貢獻2041條經驗 獲得超4個贊

缺少 X-WP-NONCE:


jQuery.ajax({

    method: 'GET',

    url: myScriptVars.root + 'wp/v2/posts/1/revisions',

    data: { foo: 'bar', baz: 1, _wpnonce: myScriptVars.nonce },

    dataType: 'json',

    success: function ( data ) {

        console.log( data );

    },

      headers: {

    'X-WP-Nonce': myScriptVars.nonce

    },

});


查看完整回答
反對 回復 2023-06-18
  • 1 回答
  • 0 關注
  • 156 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號