Nuxtjs handler.call不是函数

时间:2019-06-11 15:25:23

标签: javascript vue.js components nuxt.js

再一次敲打我的头。

我很惊讶在SOF上没有看到类似的问题,但这确实很奇怪。 这段代码可以正常工作,但是我进入了一个独立的组件,可以在多个页面上使用。 这是我转到页面时遇到的错误:

handler.call is not a function

我实际上知道它是此组件,因为如果我从页面中删除该组件,则不会出现错误并且运行正常。组件在脚本中不调用任何函数,也没有任何函数。我不知道发生了什么。

并且在控制台日志中,也没有太多帮助:

TypeError: "handler.call is not a function"
    NuxtJS 21

    invokeWithErrorHandling

    callHook

    insert

    invokeInsertHook

    patch

    _update

    updateComponent

    get

    Watcher

    mountComponent

    $mount

    mount

    _callee5$

    tryCatch

    invoke

    method

    asyncGeneratorStep

    _next

    run

    notify

    flush

这是非常简单的组件源代码:

<template>
    <div>
        <button v-if="can_edit" class='btn-blue'> Edit </button>
        <div v-for="card in cards" class='my-credit-card' v-bind:key="card.id">
            <h5>{{card.name}}</h5>
            <h5 class='mt-0'>•••• •••• •••• {{card.last4}}</h5>
            <p class='small'>Exp. {{card.expiration}}</p>
        </div>
        <div v-if="cards.length == 0">
            <p class='subtle'>
                Your saved payment methods will display here once you send your first card!
            </p>
        </div>
        <a v-if="(can_add && cards.length > 0)" href="/add-card" class='action'> + Add New Card </a>
    </div>
</template>
<script>
export default {
    data : function(){
        return {
            cards : [
                {
                    id: 1,
                    name: "Lisa Smith",
                    last4: "4231",
                    expiration: "12/2022"
                },
                {
                    id: 2,
                    name: "John Smith",
                    last4: "1234",
                    expiration: "11/2023"
                },
            ],
        };
    },
    props : {
        can_add : {
            default : true,
            type: Boolean,
        },
        can_edit : {
            default : true,
            type: Boolean,
        },
    },
    mounted : {
        // fetch cards
    },
}
</script>

这就是我导入组件的方式:

<template>
    <section class='container'>
        <h1>My Credit Cards</h1>
        <mycards :can_add="true" :can_edit="true"></mycards>
    </section>
</template>
<script>
import mycards from '~/components/my_cards.vue';
export default {
    data : function(){
        return {
            test : 1,
        };
    },
    components : {
        mycards,
    },
}
</script>

1 个答案:

答案 0 :(得分:1)

此:

mounted : {
    // fetch cards
},

应该是:

mounted () {
    // fetch cards
},

您正在将挂接的钩子设置为对象,该对象上没有call方法。