是否可以将数据存储在 Vue js 中的会话中,然后在您的应用程序中使用它们?现在我正在candidate_profiles页面上显示所有内容,我想将名称存储{{candidateProfile.name}}在会话变量中,以便我可以通过表单将此数据发送到服务器端(页面上还有其他字段,但只是为了简化我在这里只显示名称)。
<div v-for="(candidateProfile, index) in candidateProfiles" :key="index">
{{candidateProfile.name}}
<button type="button" class="btn btn-lg btn-success" v-on:click="showInterviewModal()">Request an Interview</button>
</div>