Skip to content

v0.11.10 bug【Uncaught RangeError: Maximum call stack size exceeded】 #853

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
zwlcoding opened this issue May 20, 2015 · 3 comments
Closed

Comments

@zwlcoding
Copy link

<div id="test">
    <input v-model="searchText" />
    <div id="contacts-list" class="demo">
        <div v-repeat="list | filterBy searchText | orderBy '$key' ">
            <strong>{{$key}}</strong>
            <div v-repeat="$value" style="padding-left:10px;">
                {{nickname}}
            </div>
        </div>
    </div>
</div>
var demo = new Vue({
  el: '#test',
  data: {"list":tmp}
})

image

@zwlcoding zwlcoding changed the title v0.11.10 bug v0.11.10 bug【Uncaught RangeError: Maximum call stack size exceeded】 May 20, 2015
@zwlcoding
Copy link
Author

In v11.05 and did not appear this error

@yyx990803
Copy link
Member

What does your tmp data look like?

@zwlcoding
Copy link
Author

it is look like this

{
    "K": [
        {
            "id": 1,
            "nickname": "Kate",
            "name": "Kate Bell",
            "email": "null"
        }
    ],
    "D": [
        {
            "id": 2,
            "nickname": "Daniel",
            "name": "Daniel Higgins Jr.",
            "email": "[email protected]"
        },
        {
            "id": 6,
            "nickname": "David",
            "name": "David Taylor",
            "email": "null"
        }
    ],
    "J": [
        {
            "id": 3,
            "nickname": "John",
            "name": "John Appleseed",
            "email": "[email protected]"
        }
    ],
    "A": [
        {
            "id": 4,
            "nickname": "Anna",
            "name": "Anna Haro",
            "email": "[email protected]"
        }
    ],
    "H": [
        {
            "id": 5,
            "nickname": "Hank",
            "name": "Hank M. Zakroff",
            "email": "[email protected]"
        }
    ]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants