使用Vue和axios无需刷新页面更新数据
P粉614840363
2023-08-25 19:15:28
<p>我有一个在 Vue 和 Axios 上制作的包含 2 个选项卡(问题和数据)的页面。
在第一个选项卡中,我填写表单并提交 - 保存按钮 <strong>v-on:click="save"</strong>。</p>
<pre class="brush:php;toolbar:false;">save: function() {
axios({
method: 'patch',
url: url,
data: this.data
})
.then(function (response) {
this.data = response.data;
}</pre>
<p>在第二个选项卡(数据)中,我有已保存数据的列表:</p>
<pre class="brush:php;toolbar:false;">mounted() {
axios
.get('/api/recommended-products/?patient_uuid=' + '{{patient.uuid}}')
.then(response => (this.data= response.data.results))
}</pre>
<p>现在,当我更改“问题”选项卡中的答案时,“数据”选项卡中的列表应该自动更改。如果我刷新页面,它就会改变 - Mounted() 有效。
我尝试创建 <strong>updateList()</strong> 函数:</p>
<pre class="brush:php;toolbar:false;">updateList: function() {
axios
.get('/api/recommended-products/?patient_uuid=' + '{{patient.uuid}}')
.then(response => (this.data= response.data.results))
}</pre>
<p>并将其添加到 <strong>save()</strong> 函数中,例如:</p>
<pre class="brush:php;toolbar:false;">save: function() {
axios({
method: 'patch',
url: url,
data: this.data
})
.then(function (response) {
this.data = response.data;
this.updateList();
}</pre>
<p>问题是这种方式第二次可以工作(有时有效有时不行)。所以我只是将 <strong>location.reload();</strong> 添加到 <strong>save()</strong> 但我不喜欢这种方法。是否可以在不刷新页面的情况下更新数据列表?我对 <strong>updateList()</strong> 函数做错了什么?</p>
在我看来,你应该使用 vuex 及其 getter。
这样,您在所有应用程序中就只有一个请求,并且一旦状态更新,数据就会自动刷新。
然后,您可以使用
计算
属性访问数据,该属性将在状态更新时自动重新渲染。以下是使用多个选项卡的示例: https://codesandbox.io/s/vuex-axios-demo-forked-m0cqe4?file=/src/App.vue
在此示例中,我通过 JsonPlaceHolder API 加载帖子信息。
每次重新发送表单(使用函数)。调用 store 的操作,然后更新状态,从而触发 getter 重新渲染数据。
注意:我将第一篇文章加载到 Mounted 中,默认值为 1。