TS2339:类型上不存在属性“帖子”

Posted

技术标签:

【中文标题】TS2339:类型上不存在属性“帖子”【英文标题】:TS2339: Property 'posts' does not exist on type 【发布时间】:2021-08-04 23:30:00 【问题描述】:

这是我尝试使用 Axios 在 ionic 5 中调用 API 的代码

import axios from "axios";

import 
  IonCard,
  IonCardContent,
  IonCardSubtitle,
  IonCardTitle
 from "@ionic/vue";

export default 
  name: "Tab1",
  components: 
    IonCard,
    IonCardContent,
    IonCardSubtitle,
    IonCardTitle
  ,
  data() 
    return  posts: [] ;
  ,

  created() 
    axios.get("http://gautammenaria.com/wp-json/wp/v2/posts").then(response => 
      this.posts = response.data;
    );
  
;

得到这个错误(也按预期得到数据)

TS2339: 类型 ' name: string; 上不存在属性 'posts'组件:

不知道是什么

【问题讨论】:

如果您要使用打字稿,export default Vue.extend( ) 会更有意义。 你用的是哪个vue版本? 我正在使用 vue 3 【参考方案1】:

您应该使用defineComponent 函数构建您的组件以获取类型推断:

import axios from "axios";

import 
  IonCard,
  IonCardContent,
  IonCardSubtitle,
  IonCardTitle
 from "@ionic/vue";

import defineComponent from 'vue'

export default defineComponent(
  name: "Tab1",
  components: 
    IonCard,
    IonCardContent,
    IonCardSubtitle,
    IonCardTitle
  ,
  data() 
    return  posts: [] ;
  ,

  created() 
    axios.get("http://gautammenaria.com/wp-json/wp/v2/posts").then(response => 
      this.posts = response.data;
    );
  
);

【讨论】:

以上是关于TS2339:类型上不存在属性“帖子”的主要内容,如果未能解决你的问题,请参考以下文章

错误 TS2339:类型“”上不存在属性“contenido”

TS2339:“请求”类型上不存在属性“用户”

类型“未知”.ts(2339) 上不存在属性“名称”

TS2339:“家”类型上不存在属性“道具”

TypeScript:TS2339 错误——“对象”类型上不存在属性

错误 TS2339:“主页”类型上不存在属性“路由器”