find a differ supporting object '250' of type 'string'. NgFor only supports binding to Iterables such as Arrays
See original GitHub issueI’m submitting a … (check one with “x”)
[ ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, post on Stackoverflow or Gitter
Current behavior
Expected behavior
Reproduction of the problem
What is the motivation / use case for changing the behavior?
Please tell us about your environment:
Table version: 10.2.0
Angular version: 4.3.3
find a differ supporting object ‘250’ of type ‘string’. NgFor only supports binding to Iterables such as Arrays
- Browser: [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]
- Language: [all | TypeScript 2.4.2 | ES6/7 | ES5]
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (2 by maintainers)
Top Results From Across the Web
Cannot find a differ supporting object '[object Object]' of type ...
Cannot find a differ supporting object '[object Object]' of type 'object'. NgFor only supports binding to Iterables such as Arrays. So, what is...
Read more >[solved] NgFor only supports binding to Iterables such as Arrays
I'm trying to access an isbn api to get a list of books based on the isbn number. My function in home.ts is:...
Read more >core.js:5980 ERROR Error: Cannot find a differ supporting ...
js:5980 ERROR Error: Cannot find a differ supporting object '[object Object]' of type 'object'. NgFor only supports binding to Iterables such as Arrays....
Read more >[Angular] Cannot find a differ supporting object ' ' of type 'string'
ERROR Error: Cannot find a differ supporting object 'http://localhost:60055/Asset/' of type 'string'. NgFor only supports binding to Iterables such as Arrays.
Read more >cannot find a differ supporting object '[object object ... - You.com
And the error that throws is Cannot find a differ supporting object '[object Object]' of type 'object'. NgFor only supports binding to Iterables...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Seems like. I had the same issue when my data looks like this [ { “key”: “Ethel Price”, “value”: “Johnson” }, { “key”: “Claudine Neal”, “value”: “Sealoud” }, { “key”: “Beryl Rice”, “value”: “Velity” } ]
But reading thru the comments here, and after changing it to
[ { “key”: “Ethel Price”, “propValue”: “Johnson” }, { “key”: “Claudine Neal”, “propValue”: “Sealoud” }, { “key”: “Beryl Rice”, “propValue”: “Velity” } ]
it worked fine. Thank you
Same error after update to version 10.2.1 from version 9.
Is an error related with
NgForOf
in theOnChanges
event. I double checked, and rows are Array. But still i receive this error, so i’ll back to version 10.0.5 and works.