Skip to content

Maximum call stack size exceeded in SSR with a v-for with 1000 components #8545

Closed
@chinesedfan

Description

@chinesedfan

Version

2.5.16

Reproduction link

https://github.com/vuejs/vue

Steps to reproduce

Sorry I failed to visit gist or other online code share platforms.

Just run the following script with Node@8.9.0 and Vue@2.5.16 installed. But in Node@6, it is ok.

process.env.VUE_ENV = 'server'; // very important

const Vue = require('vue');
const renderer = require('vue-server-renderer').createRenderer({
});

Vue.component('c-child', {
    template: '<div class="c-child"></div>'
});

const vueInstance = new Vue({
    template: `<div class="root">
        <c-child v-for="(x, i) in items" :key="i"></c-child>
    </div>`,
    data: {
        items: Array(1000).fill(0)
    }
})

console.log('start to renderToString...');
renderer.renderToString(vueInstance, (error, html) => {
    if (error) {
        console.error(`render error!\n${error.stack}`);
        return;
    }

    console.log('what?!', html)
});

What is expected?

Output the html.

What is actually happening?

render error!
RangeError: Maximum call stack size exceeded
    at insert (timers.js:158:16)
    at Object.exports._unrefActive (timers.js:149:3)
    at WriteStream._unrefTimer (net.js:260:12)
    at WriteStream.Socket._writeGeneric (net.js:723:8)
    at WriteStream.Socket._write (net.js:786:8)
    at doWrite (_stream_writable.js:387:12)
    at writeOrBuffer (_stream_writable.js:373:5)
    at WriteStream.Writable.write (_stream_writable.js:290:11)
    at WriteStream.Socket.write (net.js:704:40)
    at write (console.js:108:12)

Someone used to mention this bug but without reproduction, #5445.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions