Class Overview
Class Description
Transforms any input value using JSON.stringify
. Useful for debugging.
Example
@Component({
selector: 'json-example',
template: `<div>
<p>Without JSON pipe:</p>
<pre>{{object}}</pre>
<p>With JSON pipe:</p>
<pre>{{object | json}}</pre>
</div>`
})
export class JsonPipeExample {
object: Object = {foo: 'bar', baz: 'qux', nested: {xyz: 3, numbers: [1, 2, 3, 4, 5]}};
}
Class Export
export class JsonPipe
Annotations
@Pipe({name: 'json', pure: false})
exported from @angular/common/index defined in @angular/common/src/pipes/json_pipe.ts (line 11)