Unit Testing Basics
  • References/JavaScript/Ember.js/Guides/Testing

Unit Testing Basics Unit tests are generally used to test a small piece of code and ensure that it is doing what was intended. Unlike acceptance

2025-01-10 15:47:30
Handling Deprecations
  • References/JavaScript/Ember.js/Guides/Configuring Ember.js

Handling Deprecations A valuable attribute of the Ember framework is its use of Semantic

2025-01-10 15:47:30
Inspecting Objects via the Container
  • References/JavaScript/Ember.js/Guides/Ember Inspector

Inspecting Objects via the Container Every Ember application has a container that maintains object instances for you. You can inspect these

2025-01-10 15:47:30
Input Helpers
  • References/JavaScript/Ember.js/Guides/Templates

Input Helpers The {{input}} and {{textarea}} helpers in Ember.js are the easiest way to create common form controls

2025-01-10 15:47:30
Query Parameters
  • References/JavaScript/Ember.js/Guides/Routing

Query Parameters Query parameters are optional key-value pairs that appear to the right of the ? in a URL. For example, the following

2025-01-10 15:47:30
Testing Controllers
  • References/JavaScript/Ember.js/Guides/Testing

Testing Controllers Unit testing methods and computed properties follows previous patterns shown in Unit Testing Basics because Ember

2025-01-10 15:47:30
Rendering a Template
  • References/JavaScript/Ember.js/Guides/Routing

Rendering a Template One job of a route handler is rendering the appropriate template to the screen. By default

2025-01-10 15:47:30
Using Block Params
  • References/JavaScript/Ember.js/Guides/Components

Using Block Params Components can have properties passed in (Passing Properties to a Component), but they can also return output to be used

2025-01-10 15:47:30
Inspecting Routes
  • References/JavaScript/Ember.js/Guides/Ember Inspector

Inspecting Routes The Routes tab displays a list of your application's routes. For the following code:

2025-01-10 15:47:30
Handling Metadata
  • References/JavaScript/Ember.js/Guides/Models

Handling Metadata Along with the records returned from your store, you'll likely need to handle some kind of metadata. Metadata is

2025-01-10 15:47:30