onClickButtonの引数にapplyを渡しており、その引数を this.onPostSuccess(res.ogp_url, res.code, title, apply)で渡したいのですがthis.onPostSuccessのところでCannot find name 'apply'となってしまいます。
わかる人がいましたら教えて欲しいです!
onClickButton(apply: Apply) { this.isPosting = true const postTitle: string = this.title const postDescription: string = this.description this.postData( postTitle, postDescription, } postData( title: string, body: string ) { const promise = PostDataSource.postOffer( this.$axios, authStore.userId, title, body, ) promise .then((res) => { this.onPostSuccess(res.ogp_url, res.code, title, apply) }) .catch((err) => { this.onPostFail(err) }) }
あなたの回答
tips
プレビュー