using div [ngStyle] for background-image and am looping it *ngFor, if any of image is missing ,how to show...












1















<div class="bg" 
onError="this.src='https://www.tibs.org.tw/images/default.jpg';"
[ngStyle]="{'background-image': 'url(' + imgss.image + ')'}"
*ngFor="let imgss of prod.product_images | slice:0:1;">
</div>


how to get alternate image if there is no image on it, i have tried using onError but which works only on image tag,but here am using only div.










share|improve this question

























  • Using src attribute on a div won't work to display an image, and i doubt onError is triggered when background image doesn't load (have you tried a console.log?).

    – Kaddath
    Nov 14 '18 at 8:04













  • My guess is you need to do var tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL; and use the results of that to change your array elements to the default URL.

    – Chris G
    Nov 14 '18 at 8:09


















1















<div class="bg" 
onError="this.src='https://www.tibs.org.tw/images/default.jpg';"
[ngStyle]="{'background-image': 'url(' + imgss.image + ')'}"
*ngFor="let imgss of prod.product_images | slice:0:1;">
</div>


how to get alternate image if there is no image on it, i have tried using onError but which works only on image tag,but here am using only div.










share|improve this question

























  • Using src attribute on a div won't work to display an image, and i doubt onError is triggered when background image doesn't load (have you tried a console.log?).

    – Kaddath
    Nov 14 '18 at 8:04













  • My guess is you need to do var tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL; and use the results of that to change your array elements to the default URL.

    – Chris G
    Nov 14 '18 at 8:09
















1












1








1








<div class="bg" 
onError="this.src='https://www.tibs.org.tw/images/default.jpg';"
[ngStyle]="{'background-image': 'url(' + imgss.image + ')'}"
*ngFor="let imgss of prod.product_images | slice:0:1;">
</div>


how to get alternate image if there is no image on it, i have tried using onError but which works only on image tag,but here am using only div.










share|improve this question
















<div class="bg" 
onError="this.src='https://www.tibs.org.tw/images/default.jpg';"
[ngStyle]="{'background-image': 'url(' + imgss.image + ')'}"
*ngFor="let imgss of prod.product_images | slice:0:1;">
</div>


how to get alternate image if there is no image on it, i have tried using onError but which works only on image tag,but here am using only div.







javascript angular angular2-directives






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 15 '18 at 6:41









Akber Iqbal

2,0433822




2,0433822










asked Nov 14 '18 at 8:00









sam_programmersam_programmer

127




127













  • Using src attribute on a div won't work to display an image, and i doubt onError is triggered when background image doesn't load (have you tried a console.log?).

    – Kaddath
    Nov 14 '18 at 8:04













  • My guess is you need to do var tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL; and use the results of that to change your array elements to the default URL.

    – Chris G
    Nov 14 '18 at 8:09





















  • Using src attribute on a div won't work to display an image, and i doubt onError is triggered when background image doesn't load (have you tried a console.log?).

    – Kaddath
    Nov 14 '18 at 8:04













  • My guess is you need to do var tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL; and use the results of that to change your array elements to the default URL.

    – Chris G
    Nov 14 '18 at 8:09



















Using src attribute on a div won't work to display an image, and i doubt onError is triggered when background image doesn't load (have you tried a console.log?).

– Kaddath
Nov 14 '18 at 8:04







Using src attribute on a div won't work to display an image, and i doubt onError is triggered when background image doesn't load (have you tried a console.log?).

– Kaddath
Nov 14 '18 at 8:04















My guess is you need to do var tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL; and use the results of that to change your array elements to the default URL.

– Chris G
Nov 14 '18 at 8:09







My guess is you need to do var tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL; and use the results of that to change your array elements to the default URL.

– Chris G
Nov 14 '18 at 8:09














1 Answer
1






active

oldest

votes


















-1














<div class="bg" [ngStyle]="{'background-image': (imgss.image) ? 'url(' + imgss.image + ')' : 'url(https://www.tibs.org.tw/images/default.jpg)' }"
*ngFor="let imgss of prod.product_images | slice:0:1;"></div>


Hope this will help you!






share|improve this answer


























  • no it doesnt worked bro..thanks for ur efforts

    – sam_programmer
    Nov 19 '18 at 7:13











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295439%2fusing-div-ngstyle-for-background-image-and-am-looping-it-ngfor-if-any-of-ima%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









-1














<div class="bg" [ngStyle]="{'background-image': (imgss.image) ? 'url(' + imgss.image + ')' : 'url(https://www.tibs.org.tw/images/default.jpg)' }"
*ngFor="let imgss of prod.product_images | slice:0:1;"></div>


Hope this will help you!






share|improve this answer


























  • no it doesnt worked bro..thanks for ur efforts

    – sam_programmer
    Nov 19 '18 at 7:13
















-1














<div class="bg" [ngStyle]="{'background-image': (imgss.image) ? 'url(' + imgss.image + ')' : 'url(https://www.tibs.org.tw/images/default.jpg)' }"
*ngFor="let imgss of prod.product_images | slice:0:1;"></div>


Hope this will help you!






share|improve this answer


























  • no it doesnt worked bro..thanks for ur efforts

    – sam_programmer
    Nov 19 '18 at 7:13














-1












-1








-1







<div class="bg" [ngStyle]="{'background-image': (imgss.image) ? 'url(' + imgss.image + ')' : 'url(https://www.tibs.org.tw/images/default.jpg)' }"
*ngFor="let imgss of prod.product_images | slice:0:1;"></div>


Hope this will help you!






share|improve this answer















<div class="bg" [ngStyle]="{'background-image': (imgss.image) ? 'url(' + imgss.image + ')' : 'url(https://www.tibs.org.tw/images/default.jpg)' }"
*ngFor="let imgss of prod.product_images | slice:0:1;"></div>


Hope this will help you!







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 14 '18 at 8:53









Zooly

2,75431839




2,75431839










answered Nov 14 '18 at 8:04









Padmapriya VishnuvardhanPadmapriya Vishnuvardhan

772310




772310













  • no it doesnt worked bro..thanks for ur efforts

    – sam_programmer
    Nov 19 '18 at 7:13



















  • no it doesnt worked bro..thanks for ur efforts

    – sam_programmer
    Nov 19 '18 at 7:13

















no it doesnt worked bro..thanks for ur efforts

– sam_programmer
Nov 19 '18 at 7:13





no it doesnt worked bro..thanks for ur efforts

– sam_programmer
Nov 19 '18 at 7:13


















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295439%2fusing-div-ngstyle-for-background-image-and-am-looping-it-ngfor-if-any-of-ima%23new-answer', 'question_page');
}
);

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







這個網誌中的熱門文章

Academy of Television Arts & Sciences

L'Équipe

1995 France bombings