*ngFor to print only the first element of an array
i'm using this code:
<div *ngIf="gamedata.notOver" class="columns">
<div class="column has-text-centered" *ngFor="let board of boards; let i = index">
<table class="is-bordered" [style.opacity]="i == player ? 0.5 : 1">
<tr *ngFor="let row of board.tiles; let j = index">
<td *ngFor="let col of row; let k = index" (click)="boardListener($event)" [style.background-color]="col.used ? '' : 'transparent'" [class.win]="col.status == 'win'" [class.fail]="col.status !== 'win'" class="battleship-tile" id="t{{i}}{{j}}{{k}}">
{{ col.value == "1" ? (col.status == "hit" ? "💀" : "X") : (col.status == "miss" ? "⛶" : (col.status == "hit" ? "💀" : "🌊")) }}
</td>
</tr>
</table>
<hr>
</div>
</div>
to print the first element of an array of arrays that contains 2 elements, how can i choose to print the first or the second element without printing both of them? i need to do this since i have to put both of them in separate divs.
html angular
|
show 1 more comment
i'm using this code:
<div *ngIf="gamedata.notOver" class="columns">
<div class="column has-text-centered" *ngFor="let board of boards; let i = index">
<table class="is-bordered" [style.opacity]="i == player ? 0.5 : 1">
<tr *ngFor="let row of board.tiles; let j = index">
<td *ngFor="let col of row; let k = index" (click)="boardListener($event)" [style.background-color]="col.used ? '' : 'transparent'" [class.win]="col.status == 'win'" [class.fail]="col.status !== 'win'" class="battleship-tile" id="t{{i}}{{j}}{{k}}">
{{ col.value == "1" ? (col.status == "hit" ? "💀" : "X") : (col.status == "miss" ? "⛶" : (col.status == "hit" ? "💀" : "🌊")) }}
</td>
</tr>
</table>
<hr>
</div>
</div>
to print the first element of an array of arrays that contains 2 elements, how can i choose to print the first or the second element without printing both of them? i need to do this since i have to put both of them in separate divs.
html angular
1
Possible duplicate of splice element from ngFor angular2
– dince12
Nov 20 '18 at 11:41
(Don't code a game in angular since this framework se a virtual DOM).
– Jacopo Sciampi
Nov 20 '18 at 11:43
If you have only two items, why not separate it and don't treat it as an array ?
– trichetriche
Nov 20 '18 at 11:43
1
@JacopoSciampi out of context, you can code several games with Angular, as long as they're not the size of Skyrim ...
– trichetriche
Nov 20 '18 at 11:44
Out of context? for real? There are tons of reasons to not use jQuery directly with angular, and same goes for canvas and other native element.
– Jacopo Sciampi
Nov 20 '18 at 11:46
|
show 1 more comment
i'm using this code:
<div *ngIf="gamedata.notOver" class="columns">
<div class="column has-text-centered" *ngFor="let board of boards; let i = index">
<table class="is-bordered" [style.opacity]="i == player ? 0.5 : 1">
<tr *ngFor="let row of board.tiles; let j = index">
<td *ngFor="let col of row; let k = index" (click)="boardListener($event)" [style.background-color]="col.used ? '' : 'transparent'" [class.win]="col.status == 'win'" [class.fail]="col.status !== 'win'" class="battleship-tile" id="t{{i}}{{j}}{{k}}">
{{ col.value == "1" ? (col.status == "hit" ? "💀" : "X") : (col.status == "miss" ? "⛶" : (col.status == "hit" ? "💀" : "🌊")) }}
</td>
</tr>
</table>
<hr>
</div>
</div>
to print the first element of an array of arrays that contains 2 elements, how can i choose to print the first or the second element without printing both of them? i need to do this since i have to put both of them in separate divs.
html angular
i'm using this code:
<div *ngIf="gamedata.notOver" class="columns">
<div class="column has-text-centered" *ngFor="let board of boards; let i = index">
<table class="is-bordered" [style.opacity]="i == player ? 0.5 : 1">
<tr *ngFor="let row of board.tiles; let j = index">
<td *ngFor="let col of row; let k = index" (click)="boardListener($event)" [style.background-color]="col.used ? '' : 'transparent'" [class.win]="col.status == 'win'" [class.fail]="col.status !== 'win'" class="battleship-tile" id="t{{i}}{{j}}{{k}}">
{{ col.value == "1" ? (col.status == "hit" ? "💀" : "X") : (col.status == "miss" ? "⛶" : (col.status == "hit" ? "💀" : "🌊")) }}
</td>
</tr>
</table>
<hr>
</div>
</div>
to print the first element of an array of arrays that contains 2 elements, how can i choose to print the first or the second element without printing both of them? i need to do this since i have to put both of them in separate divs.
html angular
html angular
edited Nov 20 '18 at 11:42
Francesco Favaro
asked Nov 20 '18 at 11:40
Francesco FavaroFrancesco Favaro
63
63
1
Possible duplicate of splice element from ngFor angular2
– dince12
Nov 20 '18 at 11:41
(Don't code a game in angular since this framework se a virtual DOM).
– Jacopo Sciampi
Nov 20 '18 at 11:43
If you have only two items, why not separate it and don't treat it as an array ?
– trichetriche
Nov 20 '18 at 11:43
1
@JacopoSciampi out of context, you can code several games with Angular, as long as they're not the size of Skyrim ...
– trichetriche
Nov 20 '18 at 11:44
Out of context? for real? There are tons of reasons to not use jQuery directly with angular, and same goes for canvas and other native element.
– Jacopo Sciampi
Nov 20 '18 at 11:46
|
show 1 more comment
1
Possible duplicate of splice element from ngFor angular2
– dince12
Nov 20 '18 at 11:41
(Don't code a game in angular since this framework se a virtual DOM).
– Jacopo Sciampi
Nov 20 '18 at 11:43
If you have only two items, why not separate it and don't treat it as an array ?
– trichetriche
Nov 20 '18 at 11:43
1
@JacopoSciampi out of context, you can code several games with Angular, as long as they're not the size of Skyrim ...
– trichetriche
Nov 20 '18 at 11:44
Out of context? for real? There are tons of reasons to not use jQuery directly with angular, and same goes for canvas and other native element.
– Jacopo Sciampi
Nov 20 '18 at 11:46
1
1
Possible duplicate of splice element from ngFor angular2
– dince12
Nov 20 '18 at 11:41
Possible duplicate of splice element from ngFor angular2
– dince12
Nov 20 '18 at 11:41
(Don't code a game in angular since this framework se a virtual DOM).
– Jacopo Sciampi
Nov 20 '18 at 11:43
(Don't code a game in angular since this framework se a virtual DOM).
– Jacopo Sciampi
Nov 20 '18 at 11:43
If you have only two items, why not separate it and don't treat it as an array ?
– trichetriche
Nov 20 '18 at 11:43
If you have only two items, why not separate it and don't treat it as an array ?
– trichetriche
Nov 20 '18 at 11:43
1
1
@JacopoSciampi out of context, you can code several games with Angular, as long as they're not the size of Skyrim ...
– trichetriche
Nov 20 '18 at 11:44
@JacopoSciampi out of context, you can code several games with Angular, as long as they're not the size of Skyrim ...
– trichetriche
Nov 20 '18 at 11:44
Out of context? for real? There are tons of reasons to not use jQuery directly with angular, and same goes for canvas and other native element.
– Jacopo Sciampi
Nov 20 '18 at 11:46
Out of context? for real? There are tons of reasons to not use jQuery directly with angular, and same goes for canvas and other native element.
– Jacopo Sciampi
Nov 20 '18 at 11:46
|
show 1 more comment
1 Answer
1
active
oldest
votes
I assume the line that refers to the array of arrays is the board of boards one.
Try wrapping each array in an ng-content that has an ngIf directive as follows:
<div class="column has-text-centered" *ngFor="let board of boards; let i = index">
<ng-content *ngIf="i%2 == 0">
INSERT WHAT YOU WANT TO DISPLAY FOR FIRST ARRAY ITEM HERE
</ng-content>
<ng-content *ngIf="i%2 != 0">
INSERT WHAT YOU WANT TO DISPLAY FOR SECOND ARRAY ITEM HERE
</ng-content>
</div>
You may have to repeat some code, but it should work.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53392244%2fngfor-to-print-only-the-first-element-of-an-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I assume the line that refers to the array of arrays is the board of boards one.
Try wrapping each array in an ng-content that has an ngIf directive as follows:
<div class="column has-text-centered" *ngFor="let board of boards; let i = index">
<ng-content *ngIf="i%2 == 0">
INSERT WHAT YOU WANT TO DISPLAY FOR FIRST ARRAY ITEM HERE
</ng-content>
<ng-content *ngIf="i%2 != 0">
INSERT WHAT YOU WANT TO DISPLAY FOR SECOND ARRAY ITEM HERE
</ng-content>
</div>
You may have to repeat some code, but it should work.
add a comment |
I assume the line that refers to the array of arrays is the board of boards one.
Try wrapping each array in an ng-content that has an ngIf directive as follows:
<div class="column has-text-centered" *ngFor="let board of boards; let i = index">
<ng-content *ngIf="i%2 == 0">
INSERT WHAT YOU WANT TO DISPLAY FOR FIRST ARRAY ITEM HERE
</ng-content>
<ng-content *ngIf="i%2 != 0">
INSERT WHAT YOU WANT TO DISPLAY FOR SECOND ARRAY ITEM HERE
</ng-content>
</div>
You may have to repeat some code, but it should work.
add a comment |
I assume the line that refers to the array of arrays is the board of boards one.
Try wrapping each array in an ng-content that has an ngIf directive as follows:
<div class="column has-text-centered" *ngFor="let board of boards; let i = index">
<ng-content *ngIf="i%2 == 0">
INSERT WHAT YOU WANT TO DISPLAY FOR FIRST ARRAY ITEM HERE
</ng-content>
<ng-content *ngIf="i%2 != 0">
INSERT WHAT YOU WANT TO DISPLAY FOR SECOND ARRAY ITEM HERE
</ng-content>
</div>
You may have to repeat some code, but it should work.
I assume the line that refers to the array of arrays is the board of boards one.
Try wrapping each array in an ng-content that has an ngIf directive as follows:
<div class="column has-text-centered" *ngFor="let board of boards; let i = index">
<ng-content *ngIf="i%2 == 0">
INSERT WHAT YOU WANT TO DISPLAY FOR FIRST ARRAY ITEM HERE
</ng-content>
<ng-content *ngIf="i%2 != 0">
INSERT WHAT YOU WANT TO DISPLAY FOR SECOND ARRAY ITEM HERE
</ng-content>
</div>
You may have to repeat some code, but it should work.
answered Nov 20 '18 at 16:51
ChronusChronus
8911
8911
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53392244%2fngfor-to-print-only-the-first-element-of-an-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Possible duplicate of splice element from ngFor angular2
– dince12
Nov 20 '18 at 11:41
(Don't code a game in angular since this framework se a virtual DOM).
– Jacopo Sciampi
Nov 20 '18 at 11:43
If you have only two items, why not separate it and don't treat it as an array ?
– trichetriche
Nov 20 '18 at 11:43
1
@JacopoSciampi out of context, you can code several games with Angular, as long as they're not the size of Skyrim ...
– trichetriche
Nov 20 '18 at 11:44
Out of context? for real? There are tons of reasons to not use jQuery directly with angular, and same goes for canvas and other native element.
– Jacopo Sciampi
Nov 20 '18 at 11:46