javascript - VueJS 从查询参数中添加数据

标签 javascript pushstate vue-router vue.js vuejs2

我正在开发一个小型纯客户端 VueJS 应用程序,它使用 VueRouter 在数据输入应用程序时更新 URL,因此用户可以使用 URL 刷新页面并重新加载他们的刷新页面时将数据导入应用程序。数据存储在查询参数中,例如:

.../app.html#/?time=300&time=300&distance=300&distance=300&unit=m&unit=m

router 根据需要解析数据,但是当我将数据添加到我的空 performance 数组时,:class 属性在我的标记中提出了一个

TypeError: Cannot read property 'length' of undefined

undefinedperformances 数组。通过从应用程序的标记中删除 :class 和成功呈现网站。我猜测 performances 数据数组尚未传递给 :class

我在 VueRouter 中没有看到任何提及此类路由的信息文档。应该如何将数据从 URL 查询参数传递到应用程序中?这是我的相关代码(为简洁起见进行了压缩):

// js file
var router = new VueRouter({}); // empty because no routes, just query parameters, so no need for list

var app = new Vue({
    el: '#app',
    data: function() {
        return {
            performances: [],
            units: units,
            newPerformance: {
                distance: {
                    value: '',
                    units: units.distance.options[0]
                },
                time: {
                    formatted: '',
                    value: ''
                },
            },
            editingPerformance: null,
        }
    },
    router: router,
    watch: {
        performances: {
            handler: function() {
                this.drawChart();
                this.updateURL();
            },
            deep: true
        }
    },
    updateURL: function() {
        var times = this.performances.map(function(v) {
                return v.time.value
            }),
            distances = this.performances.map(function(v) {
                return v.distance.value
            }),
            units = this.performances.map(function(v) {
                return v.distance.units.value
            });
        router.push({
            query: {
                time: times,
                distance: distances,
                dunit: units
            }
        });
    }
    ....
});

HTML文件

...
<div v-for="(performance, index) in performances" :class="{'card-list': performances.length > 1 }">
...
</div>
...

我已阅读 Reactivity in Depth文档并尝试了以下解决方案:

    Vue.nextTick(function() {
        this.performances.push(performance);
    })

    Vue.set(app, 'performances',performanceArray);

这会导致相同的错误。我可以根据要求提供更多代码。

编辑:添加堆栈跟踪:

[Vue warn]: Error when rendering root instance: warn @ vue.js:513
Vue._render @ vue.js:2934
(anonymous function) @ vue.js:2335
get @ vue.js:1643run @ vue.js:1712
flushSchedulerQueue @ vue.js:1530
(anonymous function) @ vue.js:465
nextTickHandler @ vue.js:414

紧随其后的是:

vue.js:427 TypeError: Cannot read property 'length' of undefined(…)
logError @ vue.js:427

最佳答案

看起来您可能将其设置为代码中某处数组之外的其他内容。你将它实例化为一个数组,而 .length 只适用于数组和字符串,所以如果你将它设置为一个对象、json 或其他任何东西,它就会出错。 Vue.nextTick 有一个回调,除非您将它设置为与 Vue.nextTick 函数处于同一作用域的变量,否则不会将“this”带入其中。类似

var self = this;

//inside nextTick

self.performances.push(performance);

但我认为您不必使用 nextTick,因为 nextTick 会在 DOM 重新呈现后更新。 push() 函数将触发 dom 重新呈现,这将使您的页面响应。如果您等待 nextTick,那么在您更改其他内容之前它可能永远不会更新。

<div v-if="performances.length" v-for="(performance, index) in performances" 
:class="performances.length > 1 ? 'card-list' : ''">
...
</div>

v-if 属性将确保在内容存在之前不会呈现它。

这应该可以解决你的问题

您还可以执行 {{ performance }} 来找出对象中到底是什么,Google chrome 有一个 vue-debugger 扩展。它向您展示了所有数据属性的实时模型。我会推荐使用它。

关于javascript - VueJS 从查询参数中添加数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41255827/

相关文章:

vuejs2 - 在 Vue 组件之外访问 VueRouter

javascript - 如何使用 JavaScript 验证此表单上的邮政编码?

javascript - Backbone.js 和 mod 重写

javascript - 使用 ExtJs 拦截 HTML 表单和值

javascript - 在 Firefox 中使用 history.pushState 让我的图标消失

javascript - "Single-page"JS 网站和 SEO

vue.js - 如何使用路由器链接滚动到特定 anchor ?

node.js - 构建我的Electro-Vue应用进行生产后的白屏

javascript - InvalidPipeArgument : '[object Object], [对象对象]、[对象对象]、[对象对象]、[对象对象]、[对象对象]、

javascript - 如何在 JS 中循环遍历多级对象?