需求是向后端传登陆用户的ID,写成this.$store.user.userID,
this.$store.user.userID
结果后端没收到,原来是少写了一个state
state
改为this.$store.state.user.userID后正常。
this.$store.state.user.userID