nuxt axios获取请求时上下文未定义错误

时间:2018-06-28 08:55:19

标签: vuejs2 vue-router

任何人都可以在我的nuxtjs页面中向我解释为什么我在以下代码中遇到上下文未定义的错误。

根据我的阅读,我认为这应该可行

谢谢

created: function()
    {
        this.fetchItems();
    },

 methods: {
    fetchItems()
    {
        let uri = 'http://localhost:8888/drupal/api/todos/' + context.params.todoid + '?_format=json';
  // works if I hardcode the todoid 

        axios.get(uri).then((response) => {
            this.todos = response.data;
            console.log(this.todos)
        });
    }
}

基本上我试图获取param.todoid,以便我可以在axios调用中使用它,请确保这确实很容易,但我无法弄清楚

谢谢

0 个答案:

没有答案