150

When using the Angular keyvalue pipe to iterate over an object's properties as follows:

<div *ngFor="let item of object | keyvalue">
  {{item.key}}:{{item.value}}
</div>

I have experienced an issue where the properties were not iterated in the order expected. And this comment suggests that I am not the only one to experience this issue:

How to loop over object properties with ngFor in Angular

Can someone advise what determines the order of iteration when using the keyvalue pipe please and how to force a specific iteration order? My ideal order of iteration is the order in which the properties were added.

Thanks

danday74
  • 52,471
  • 49
  • 232
  • 283

12 Answers12

312

According to the Angular documentation, the keyvalue pipe sorts the items by key order by default. You can provide a comparer function to change that order, and sort the items according to the key, to the value, or to the entry order of the properties in the object.

The following comparer functions sort the items in various orders:

// Preserve original property order
originalOrder = (a: KeyValue<number,string>, b: KeyValue<number,string>): number => {
  return 0;
}

// Order by ascending property value
valueAscOrder = (a: KeyValue<number,string>, b: KeyValue<number,string>): number => {
  return a.value.localeCompare(b.value);
}

// Order by descending property key
keyDescOrder = (a: KeyValue<number,string>, b: KeyValue<number,string>): number => {
  return a.key > b.key ? -1 : (b.key > a.key ? 1 : 0);
}

when applied to the keyvalue pipe:

<div *ngFor="let item of object | keyvalue: originalOrder">
  {{item.key}} : {{item.value}}
</div>

<div *ngFor="let item of object | keyvalue: valueAscOrder">
  {{item.key}} : {{item.value}}
</div>

<div *ngFor="let item of object | keyvalue: keyDescOrder">
  {{item.key}} : {{item.value}}
</div>

See this stackblitz for a demo.


Supplying a constant or null instead of a valid comparer function preserves the entry order of the object properties, like originalOrder does, but it causes an exception (see this stackblitz):

<!-- The following syntaxes preserve the original property order -->
<div *ngFor="let item of object | keyvalue: 0">
<div *ngFor="let item of object | keyvalue: 374">
<div *ngFor="let item of object | keyvalue: null">

<!-- but they cause an exception (visible in the console) -->
ERROR TypeError: The comparison function must be either a function or undefined

Moreover, using that syntax twice in the template does not display the items at all. Therefore, I would not recommend it. Please note that supplying undefined as the comparer function does not cause any exception but does not change the default behavior: the items are sorted by key value.

ConnorsFan
  • 70,558
  • 13
  • 122
  • 146
  • 1
    What if I don'y want them to be ordered at all? – Tenzolinho Mar 18 '19 at 15:33
  • 1
    @Tenzolinho - You can implement the comparer function as you like. You may try returning a random value to create an unordered list. Or maybe always returning zero. – ConnorsFan Mar 18 '19 at 15:37
  • 9
    @ConnorsFan thank you so much, you are a life saver. I wrote `keyvalue: 0` and they are in the original order. – Tenzolinho Mar 19 '19 at 07:55
  • 18
    `keyvalue: 0` no longer works in Angular 7. Just create a empty function: `sortNull() {}` and then set `keyvalue: sortNull` – elier May 22 '19 at 14:14
  • Or https://stackoverflow.com/questions/35534959/access-key-and-value-of-object-using-ngfor#comment90891080_51491848 – JFK Aug 26 '19 at 01:03
  • `keyvalue: 0` works in Angular 8.2.7. Thanks @Tenzolinho that's exactly what I was looking for, super clean. – Mycah Nov 22 '19 at 23:48
  • @Mycah - Make sure that `keyvalue: 0` does not cause an exception. I updated my answer with a note about that syntax, and a suggestion for a valid `originalOrder` comparer function. – ConnorsFan Nov 25 '19 at 15:34
  • 1
    @ConnorsFan Thanks, I went with `originalOrder() { return 0; }` based on a comment in in one of the other answers and no longer get the console error. – Mycah Nov 25 '19 at 20:46
  • @Mycah - Please note that `originalOrder()` was based on [my first comment](https://stackoverflow.com/questions/52793944/angular-keyvalue-pipe-sort-properties-iterate-in-order/52794221#comment97184742_52794221) to this answer. – ConnorsFan Nov 26 '19 at 14:23
  • 1
    The `originalOrder` function can be simplified to `originalOrder = () => 0` – wlf Feb 02 '22 at 23:10
33
<div *ngFor="let item of object | keyvalue: 0">
  {{item.key}} : {{item.value}}
</div>

directly write and you will get the data in sameorder as it is in the json

keyvalue: 0
V_for_Vj
  • 849
  • 1
  • 12
  • 30
  • 6
    I was please with that solution, then I opened the console and so a lot of error. ERROR TypeError: The comparison function must be either a function or undefined – Robouste Oct 18 '19 at 11:15
  • 18
    create a function asIs() { return 0; }. The function can be added as: keyvalue: asIs – Prasoon Srivastava Nov 08 '19 at 20:16
  • Also... You will need implement @PrasoonSrivastava suggestion... A "0" value don't works on build because type errors... – Leandro Castro Mar 09 '20 at 16:56
30

Yes, by default the keyvalue pair sorting data in ascending order.

To keep it unsorted modify as:

keyvalue: 0

Final code:

<div *ngFor="let item of object | keyvalue:0">
  {{item.key}}:{{item.value}}
</div>

But for angular 7 or above, you need to put an empty function to keep data unsorted.

<div *ngFor="let item of object | keyvalue: unsorted">
      {{item.key}}:{{item.value}}
    </div>

In your .ts file just put this empty function.

  unsorted() { }

Hope it's helpful.

Majedur
  • 3,074
  • 1
  • 30
  • 43
  • 1
    It will work, but will also cause `core.js:6241 ERROR TypeError: The comparison function must be either a function or undefined` ;). At least in Angular 10. – Michał Stochmal Sep 11 '20 at 12:02
  • 2
    Worked for me with after adding attributes : unsorted(a: KeyValue, b: KeyValue): number { return 0; } – Tarek Adra Jan 08 '21 at 19:03
  • 6
    ts: `unsorted(a: any, b: any): number { return 0; }` html: `
    {{item.key}}:{{item.value}}
    `
    – samheihey Jul 23 '21 at 07:00
21

To keep the object order you can use

keepOrder = (a, b) => {
    return a;
}

Let's say you have

wbs = {
"z": 123,
"y": 456,
"x": 789,
"w": 0#*
}

If you use keyvalue you get alphabetical order by key

w 0#*
x 789
y 456
z 123

applying :keepOrder you keep object order

<ion-item *ngFor="let w of wbs | keyvalue: keepOrder">
    <ion-label>{{ w.key }}</ion-label>
    <ion-label>{{ w.value }}</ion-label>
</ion-item>
A. D'Alfonso
  • 759
  • 11
  • 20
10

This is same as accepted answer, but it has more complex object so It can help somebody How to sort by custom index field and using keyval pipe.

In angular component:

myObject = {
    "key1": { val:"whateverVal1", code:"whateverCode1", index: 1},
    "key2": { val:"whateverVal2", code:"whateverCode2", index: 0},
    "key3": { val:"whateverVal3", code:"whateverCode3", index: 2}
}

Sorting function in component:

indexOrderAsc = (akv: KeyValue<string, any>, bkv: KeyValue<string, any>): number => {
        const a = akv.value.index;
        const b = bkv.value.index;

        return a > b ? 1 : (b > a ? -1 : 0);
    };

in template:

<div *ngFor="let x of myObject | keyvalue:indexOrderAsc">
    ...
</div>
Peter Dub
  • 491
  • 5
  • 12
7

I prefer overriding default keyvalue behavior by extending it in my pipe. Then I use my pipe instead of keyvalue in my templates.

For Angular >= 13

import {Pipe, PipeTransform} from '@angular/core';
import {KeyValuePipe} from '@angular/common';

const keepOrder = (a, b) => a;

// This pipe uses the angular keyvalue pipe. but doesn't change order.
@Pipe({
  name: 'defaultOrderKeyvalue'
})
export class DefaultOrderKeyvaluePipe extends KeyValuePipe implements PipeTransform {

  transform(value: any, ...args: any[]): any {
    return super.transform(value, keepOrder);
  }

}

For Angular < 13

import {Pipe} from '@angular/core';
import {KeyValuePipe} from '@angular/common';

const keepOrder = (a, b) => a;

// This pipe uses the angular keyvalue pipe but doesn't change order.
@Pipe({
  name: 'defaultOrderKeyvalue'
})
export class DefaultOrderKeyvaluePipe extends KeyValuePipe {

  public transform(value, compareFn = keepOrder) {
    return super.transform(value, compareFn);
  }

}
Michał Stochmal
  • 5,895
  • 4
  • 36
  • 44
5

Try below piece of code:

<div *ngFor="let item of object | keyvalue: 0">
  {{item.key}} : {{item.value}}
</div>
ank
  • 135
  • 2
  • 4
2

Yes, Object properties iterates randomly since it doesn't get stored as array in memory. However you can sort by properties.

If you want to iterate by insertion position, you need to create one extra property like index and set the timestamp and sort by index.

Below is the pipe you can use to control the sorting and iteration

Pipe

import {Pipe, PipeTransform} from 'angular2/core';

@Pipe({name: 'values'})
export class ValuesPipe implements PipeTransform {
    transform(value: any, args?: any[]): Object[] {
        let keyArr: any[] = Object.keys(value),
            dataArr = [],
            keyName = args[0];

        keyArr.forEach((key: any) => {
            value[key][keyName] = key;
            dataArr.push(value[key])
        });

        if(args[1]) {
            dataArr.sort((a: Object, b: Object): number => {
                return a[keyName] > b[keyName] ? 1 : -1;
            });
        }

        return dataArr;
    }
}

Usage

<div *ngFor='#item in object | values:"keyName":true'>...</div>
Frederik Struck-Schøning
  • 12,981
  • 8
  • 59
  • 68
Sunil Singh
  • 11,001
  • 2
  • 27
  • 48
2

Make a pipe to set default to unordered:

// src/app/pipes/new-key-value.pipe.ts
import { Pipe, PipeTransform } from '@angular/core';
import { KeyValuePipe } from '@angular/common';
import { KeyValueDiffers } from '@angular/core';
const unordered = (a,b)=>0

@Pipe({
  name: 'newkeyvalue'
})

// This pipe uses the angular keyvalue pipe. but defaults to unordered.
export class NewKeyValuePipe implements PipeTransform {
  
  constructor(public differs: KeyValueDiffers){};
  public transform (value, compareFn = unordered){
    let pipe =  new KeyValuePipe(this.differs);
    return pipe.transform(value, compareFn)
  }
}

links:

Can I call an Angular2 pipe from a pipe?

https://github.com/angular/angular/blob/8.2.14/packages/common/src/pipes/keyvalue_pipe.ts#L25-L89

Template usage:

// src/app/some-component/some-component.html
<div *ngFor="let x of myObject | newkeyvalue>
</div>

register in the module.ts

// src/app/app.module.ts
import { NewKeyValuePipe } from '@/pipes/new-key-value.pipe.ts'
...
@NgModule({
  declarations: [
    ...
    NewKeyValuePipe,
    ...
  ]
...
})
Michael Dimmitt
  • 826
  • 10
  • 23
2

I think this is a cleaner solution. Uncomment the return statement that needs to give the right order:

interface KeyValue<K, V> {
  key: K,
  value: V
}

// Order by descending property key
  keyOrder = (aA: KeyValue<string,any>, bB: KeyValue<string,any>): number => {
    const a = aA.value.index;
    const b = bB.value.index;
    //return a > b ? 1 : (b > a ? -1 : 0); // ASCENDING
    return a > b ? -1 : (b > a ? 1 : 0); // DESCENDING
  }

USE CASE

<div *ngFor="let x of y | keyvalue: keyOrder;">
   {{ x.key  }} indexes: {{ x.value.index }}
</div>
Alasdfgxc
  • 21
  • 3
1

With Angular 13.

<div *ngFor="let item of object | keyvalue: 0">
  {{item.key}} : {{item.value}}
</div>

keyvalu: 0 

is not working but empty unsorted method is working if you dont want to perform any sort of operations on existing array object.

<div *ngFor="let item of object | keyvalue: unsorted">
      {{item.key}}:{{item.value}}
    </div>

In your .ts file just put this empty function.

  unsorted() { }
atluriajith
  • 762
  • 3
  • 17
  • 41
1

Simply implement your own pipe (with correct typing) that takes a map as input and gives you back an array in the same order:

@Pipe({
  name: 'keepOrderKeyValue'
})
export class KeepOrderKeyValuePipe {

  transform<K, V>(input: ReadonlyMap<K, V>): Array<KeyValue<K, V>> {
    return Array.from(input, ([key, value]) => ({ key, value }))
  }
}

Or if you want to support multiple types like a Record/Map or handle undefined, you can implement it like this:

@Pipe({
  name: 'keepOrderKeyValue'
})
export class KeepOrderKeyValuePipe {

  transform<K extends keyof any, V>(input: ReadonlyMap<K, V> | Record<K, V> | undefined): Array<KeyValue<K, V>> {
    if (input instanceof Map) {
      return Array.from(input, ([key, value]) => ({ key, value }))
    }

    return input
        ? Object.entries(input).map(([key, value]) => ({ key: key as K, value }))
        : []
  }
}

Usage:

<div *ngFor="let item of object | keepOrderKeyValue">
  {{item.key}} : {{item.value}}
</div>
Lars
  • 736
  • 1
  • 8
  • 18