写了两个按钮,用muse-ui.结果第一次关注时无法切换(但请求发出去了,此时点击其它的“取消关注”才会切换。)刷新后,已是“取消关注”的功能正常。//这是按钮:<mu-flat-button label="+ 关注" class="demo-flat-button" v-if="!item.user_followed" @click="myFollow(item)" /><mu-flat-button label="已关注" class="demo-flat-button" id="followed" v-else="item.user_followed" @click="unFollow(item)"/>//对应方法及请求methods:{//关注 myFollow (item) { var _this = this; axios.post('关注的请求‘).then(function (res) { item.user_followed = true }) }, //取消关注 unFollow (item) { var _this = this; axios.post('取消关注的请求').then(function (res) { item.user_followed = false }) }}
添加回答
举报
0/150
提交
取消