how to get multiple object array value into view just using 1 ng-repeat in angular-laravel
i'm new with laravel and angular things. so i try to get data from 3 table and create 3 different variable with model in each variable and in angular controller i got data result as $scope.document_url. first this is my 3 object data :
and i want to know is it possible to get all 3 object into 1 in just using 1 ng-repeat? this is what i do in my angular view :
<tr md-row md-auto-select ng-repeat="(key, value) in document_url[0]">
so i want just document_url not document_url[0] to get all array value in all object in 1 ng-repeat. thanks for helping me sorry bad english. if you dont understand my explanation i will try to explain more detail.
arrays angularjs laravel object angularjs-ng-repeat
add a comment |
i'm new with laravel and angular things. so i try to get data from 3 table and create 3 different variable with model in each variable and in angular controller i got data result as $scope.document_url. first this is my 3 object data :
and i want to know is it possible to get all 3 object into 1 in just using 1 ng-repeat? this is what i do in my angular view :
<tr md-row md-auto-select ng-repeat="(key, value) in document_url[0]">
so i want just document_url not document_url[0] to get all array value in all object in 1 ng-repeat. thanks for helping me sorry bad english. if you dont understand my explanation i will try to explain more detail.
arrays angularjs laravel object angularjs-ng-repeat
add a comment |
i'm new with laravel and angular things. so i try to get data from 3 table and create 3 different variable with model in each variable and in angular controller i got data result as $scope.document_url. first this is my 3 object data :
and i want to know is it possible to get all 3 object into 1 in just using 1 ng-repeat? this is what i do in my angular view :
<tr md-row md-auto-select ng-repeat="(key, value) in document_url[0]">
so i want just document_url not document_url[0] to get all array value in all object in 1 ng-repeat. thanks for helping me sorry bad english. if you dont understand my explanation i will try to explain more detail.
arrays angularjs laravel object angularjs-ng-repeat
i'm new with laravel and angular things. so i try to get data from 3 table and create 3 different variable with model in each variable and in angular controller i got data result as $scope.document_url. first this is my 3 object data :
and i want to know is it possible to get all 3 object into 1 in just using 1 ng-repeat? this is what i do in my angular view :
<tr md-row md-auto-select ng-repeat="(key, value) in document_url[0]">
so i want just document_url not document_url[0] to get all array value in all object in 1 ng-repeat. thanks for helping me sorry bad english. if you dont understand my explanation i will try to explain more detail.
arrays angularjs laravel object angularjs-ng-repeat
arrays angularjs laravel object angularjs-ng-repeat
edited Nov 13 '18 at 10:25
trichetriche
26.1k42152
26.1k42152
asked Nov 13 '18 at 10:13
Ihsan DnIhsan Dn
257
257
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Could you not use two ng-repeats one inside the other?
<tr md-row md-auto-select ng-repeat="outerObj in main_array">
<span ng-repeat="innerObj in outerObj">{{outerObj.Id}} - {{innerObj.Id}}</span>
</tr>
still not working as i hope but thanks for advice
– Ihsan Dn
Nov 14 '18 at 10:57
the above will work you can use 3 repeats and then access all objects from the innermost repeat it will work I have done this many times stick at it
– tfa
Nov 14 '18 at 11:43
how to know the object values i get from each ng-repeat? like console.log to see array values after ng-repeat. thanks
– Ihsan Dn
Nov 16 '18 at 3:15
okay it works but can't use <span> to show data without <td> and i need to add ng-repeat and span in every <td> to make it works. thanks for advice btw.
– Ihsan Dn
Nov 16 '18 at 4:13
yes forgot the td glad you got it working
– tfa
Nov 19 '18 at 14:06
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%2f53278642%2fhow-to-get-multiple-object-array-value-into-view-just-using-1-ng-repeat-in-angul%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
Could you not use two ng-repeats one inside the other?
<tr md-row md-auto-select ng-repeat="outerObj in main_array">
<span ng-repeat="innerObj in outerObj">{{outerObj.Id}} - {{innerObj.Id}}</span>
</tr>
still not working as i hope but thanks for advice
– Ihsan Dn
Nov 14 '18 at 10:57
the above will work you can use 3 repeats and then access all objects from the innermost repeat it will work I have done this many times stick at it
– tfa
Nov 14 '18 at 11:43
how to know the object values i get from each ng-repeat? like console.log to see array values after ng-repeat. thanks
– Ihsan Dn
Nov 16 '18 at 3:15
okay it works but can't use <span> to show data without <td> and i need to add ng-repeat and span in every <td> to make it works. thanks for advice btw.
– Ihsan Dn
Nov 16 '18 at 4:13
yes forgot the td glad you got it working
– tfa
Nov 19 '18 at 14:06
add a comment |
Could you not use two ng-repeats one inside the other?
<tr md-row md-auto-select ng-repeat="outerObj in main_array">
<span ng-repeat="innerObj in outerObj">{{outerObj.Id}} - {{innerObj.Id}}</span>
</tr>
still not working as i hope but thanks for advice
– Ihsan Dn
Nov 14 '18 at 10:57
the above will work you can use 3 repeats and then access all objects from the innermost repeat it will work I have done this many times stick at it
– tfa
Nov 14 '18 at 11:43
how to know the object values i get from each ng-repeat? like console.log to see array values after ng-repeat. thanks
– Ihsan Dn
Nov 16 '18 at 3:15
okay it works but can't use <span> to show data without <td> and i need to add ng-repeat and span in every <td> to make it works. thanks for advice btw.
– Ihsan Dn
Nov 16 '18 at 4:13
yes forgot the td glad you got it working
– tfa
Nov 19 '18 at 14:06
add a comment |
Could you not use two ng-repeats one inside the other?
<tr md-row md-auto-select ng-repeat="outerObj in main_array">
<span ng-repeat="innerObj in outerObj">{{outerObj.Id}} - {{innerObj.Id}}</span>
</tr>
Could you not use two ng-repeats one inside the other?
<tr md-row md-auto-select ng-repeat="outerObj in main_array">
<span ng-repeat="innerObj in outerObj">{{outerObj.Id}} - {{innerObj.Id}}</span>
</tr>
answered Nov 13 '18 at 13:56
tfatfa
348310
348310
still not working as i hope but thanks for advice
– Ihsan Dn
Nov 14 '18 at 10:57
the above will work you can use 3 repeats and then access all objects from the innermost repeat it will work I have done this many times stick at it
– tfa
Nov 14 '18 at 11:43
how to know the object values i get from each ng-repeat? like console.log to see array values after ng-repeat. thanks
– Ihsan Dn
Nov 16 '18 at 3:15
okay it works but can't use <span> to show data without <td> and i need to add ng-repeat and span in every <td> to make it works. thanks for advice btw.
– Ihsan Dn
Nov 16 '18 at 4:13
yes forgot the td glad you got it working
– tfa
Nov 19 '18 at 14:06
add a comment |
still not working as i hope but thanks for advice
– Ihsan Dn
Nov 14 '18 at 10:57
the above will work you can use 3 repeats and then access all objects from the innermost repeat it will work I have done this many times stick at it
– tfa
Nov 14 '18 at 11:43
how to know the object values i get from each ng-repeat? like console.log to see array values after ng-repeat. thanks
– Ihsan Dn
Nov 16 '18 at 3:15
okay it works but can't use <span> to show data without <td> and i need to add ng-repeat and span in every <td> to make it works. thanks for advice btw.
– Ihsan Dn
Nov 16 '18 at 4:13
yes forgot the td glad you got it working
– tfa
Nov 19 '18 at 14:06
still not working as i hope but thanks for advice
– Ihsan Dn
Nov 14 '18 at 10:57
still not working as i hope but thanks for advice
– Ihsan Dn
Nov 14 '18 at 10:57
the above will work you can use 3 repeats and then access all objects from the innermost repeat it will work I have done this many times stick at it
– tfa
Nov 14 '18 at 11:43
the above will work you can use 3 repeats and then access all objects from the innermost repeat it will work I have done this many times stick at it
– tfa
Nov 14 '18 at 11:43
how to know the object values i get from each ng-repeat? like console.log to see array values after ng-repeat. thanks
– Ihsan Dn
Nov 16 '18 at 3:15
how to know the object values i get from each ng-repeat? like console.log to see array values after ng-repeat. thanks
– Ihsan Dn
Nov 16 '18 at 3:15
okay it works but can't use <span> to show data without <td> and i need to add ng-repeat and span in every <td> to make it works. thanks for advice btw.
– Ihsan Dn
Nov 16 '18 at 4:13
okay it works but can't use <span> to show data without <td> and i need to add ng-repeat and span in every <td> to make it works. thanks for advice btw.
– Ihsan Dn
Nov 16 '18 at 4:13
yes forgot the td glad you got it working
– tfa
Nov 19 '18 at 14:06
yes forgot the td glad you got it working
– tfa
Nov 19 '18 at 14:06
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%2f53278642%2fhow-to-get-multiple-object-array-value-into-view-just-using-1-ng-repeat-in-angul%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