我的看法是这样的:
<div class="favorite" style="margin-bottom:5px;">
@if (Auth::user())
<add-favorite-store :id-store="{{ $store->id }}"></add-favorite-store>
@else
<a href="javascript:" class="btn btn-block btn-success">
<span class="fa fa-heart"></span> Favorite
</a>
@endif
</div>
我的组件是这样的:
<template>
<a href="javascript:" class="btn btn-block btn-success" @click="addFavoriteStore($event)">
<span class="fa fa-heart"></span> <label id="favoriteId">{{ store_id == 'responseFound' ? 'Un-Favorite' : 'Favorite' }}</label>
</a>
</template>
<script>
export default{
props:['idStore'],
mounted(){
this.checkFavoriteStore()
},
methods:{
addFavoriteStore(event){
var label = $('#favoriteId')
var text = label.text()
event.target.disabled = true
const payload= {id_store: this.idStore}
if(text == "Favorite") {
this.$store.dispatch('addFavoriteStore', payload)
}
else {
this.$store.dispatch('deleteFavoriteStore', payload)
}
setTimeout(function () {
location.reload(true)
}, 1500)
},
checkFavoriteStore(){
const payload= {id_store: this.idStore}
var data = this.$store.dispatch('checkFavoriteStore', payload)
data.then((res) => this.store_id = res)
}
},
data() {
return {
store_id: ''
}
}
}
</script>
在我上面的代码中,我使用
location.reload(真)
更新页面上的数据。但它正在重新加载页面。
我想要更新页面时,它不是重新加载页面
我该怎么做?
原文由 moses toh 发布,翻译遵循 CC BY-SA 4.0 许可协议
好的,这是一个简单的用例,但不如您的复杂,并且应该使用 vuejs。 ( http://codepen.io/simondavies/pen/MJOQEW )
好的,让 laravel/php 代码获取商店 ID 以及它是否已经被收藏。这样,您的脚本就不会首先检查商店然后决定要做什么。
这样做是通过以下组件发送
store-id
和is-favorited
:然后 Vue 组件将更新按钮以显示它是否已经喜欢(红色)或不喜欢(灰色),然后还处理点击事件并相应地更新。
当您使用 Laravel 告诉组件它是否已被收藏时,您可以摆脱检查功能并减少一个 http 请求。然后您只需要在用户单击收藏按钮时更新商店。
正如在演示中看到的那样,它会更新,无需刷新。
我希望这能帮助你重写你的,这样你就可以得到你想要的。
PS我已经忽略了登录检查
@if (Auth::user())
你有所以你可以把它放回去等等