Als «ionic2» getaggte Fragen

91
Adb-Installationsfehler: INSTALL_CANCELED_BY_USER

Ich versuche die App über adb zu installieren und erhalte eine Fehlermeldung: $ ./adb -d install /Users/dimon/Projects/one-place/myprogram/platforms/android/build/outputs/apk/android-debug.apk -r -g 3704 KB/s (4595985 bytes in 1.211s) pkg: /data/local/tmp/android-debug.apk Failure...

76
So iterieren Sie Objektschlüssel mit * ngFor

Ich möchte [Objektobjekt] mit * ngFor in Angular 2 iterieren. Das Problem ist, dass das Objekt kein Array eines Objekts ist, sondern ein Objekt des Objekts, das weitere Objekte enthält. { "data": { "id": 834, "first_name": "GS", "last_name": "Shahid", "phone": "03215110224", "role":...

70
Wie setze ich die dynamische ID in * ngFor?

Wie stelle idich die Dynamik in Angular 2 ein? Ich habe versucht: <div class = "CirclePoint" *ngFor="#c of circles" id = "{{ 'Location' + c.id }}"></div> this.circles = [ { x: 50 , y: 50 ,id : "oyut1" }, { x: 100 , y: 100 ,id : "oyut3" }, { x: 150 , y: 150 ,id : "oyut2"...