Ok, I have Array [ "1,john", "2,jane", "3,zack" ]
I want to display as
How to to this
My code
<!DOCTYPE html>
<html>
<head>
<script src="http://ift.tt/1H1Z8nj"></script>
<script src="http://ift.tt/13wBVXk"></script>
<script src="http://ift.tt/1H1Z8Uo"></script>
<script src="http://ift.tt/1LNmMn9"></script>
<script src="http://ift.tt/1H1Z8nl"></script>
<script src="http://ift.tt/1e1uqGJ"></script>
</head>
<body>
<script type="text/x-handlebars">
</script>
<script type="text/x-handlebars" data-template-name="index">
<table>
<tr>
<th>Id</th>
<th>Name</th>
</tr>
<tr>
<td></td>
</tr>
</table>
</script>
<script type="text/javascript">
var App = Ember.Application.create()
var someArray = [ {
'id':1,
'name':'john'
},{
'id':2,
'name':'jane'
},{
'id':3,
'name':'zack'
}];
App.testData = someArray.map( function( el )
{
return el.id + ',' + el.name;
});
</script>
</body>
</html>
Aucun commentaire:
Enregistrer un commentaire