如何在帖子创建期间通过 Axios 帖子请求填充 ACF 字段?

时间:2021-02-15 19:22:59

标签: vue.js axios advanced-custom-fields

如何在通过 Axios 创建帖子时填充 ACF 字段?使用此方法,我可以创建具有正确标题和正文的帖子,但无法发送 ACF 字段。 (我已经安装了 ACF Rest Api 插件)

createPost(){
        axios({
          method: 'post',
          url: 'https://webisonstage.cloud/vuedeal/wp-json/wp/v2/prodotti',
          data: {
            title: this.form.title,
            content: this.form.message,
            acf:{
              prod_prezzo: this.form.prezzo
            }
          },
          headers: {
             "Authorization" : `Bearer ${this.$store.state.token}`
          }
        });
        
      }

1 个答案:

答案 0 :(得分:0)

我解决了将标签“acf”更改为“fields”...