Skip to content

Instantly share code, notes, and snippets.

@sheriffderek
Last active July 10, 2017 16:28
Show Gist options
  • Save sheriffderek/afb9d71933322860938b3936d617a776 to your computer and use it in GitHub Desktop.
Save sheriffderek/afb9d71933322860938b3936d617a776 to your computer and use it in GitHub Desktop.
Local JSON example
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Importing local JSON experiments',
});
var thisData = [
{
"_id": "1",
"slug": "product-one",
"name": "Product one"
},
{
"_id": "2",
"slug": "product-two",
"name": "Product two"
}
]
export default thisData;
{
"products": [
{
"_id": "1",
"slug": "product-one",
"name": "Product one"
},
{
"_id": "2",
"slug": "product-two",
"name": "Product two"
}
]
}
import Ember from 'ember';
import exampleJSON from 'twiddle/exampleData';
export default Ember.Route.extend({
model() {
console.log(exampleJSON)
return exampleJSON;
},
});
<h1>{{appName}}</h1>
<h2>Product list</h2>
<ul class='product-list'>
{{#each model as |product|}}
<li class='product'>{{product.name}}</li>
{{/each}}
</ul>
{
"version": "0.12.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.12.0",
"ember-template-compiler": "2.12.0",
"ember-testing": "2.12.0"
},
"addons": {
"ember-data": "2.12.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment