Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Darren Hunter 146 posts 238 karma points
    May 22, 2024 @ 13:53
    Darren Hunter
    0

    mediaResource.getById waiting for value to return

    I am working on an AngulerJS control for a back office preview that for a Carousel.

    I have the following so far

    angular.module("umbraco").controller("InPageCarouselController", function ($scope, $sce, mediaResource) {

    var bdata = $scope.block.data;
    var images = bdata.images;
    var arrayLength = images.length;
    var active = "";
    
    var data = "";
    var i = 0;
    angular.forEach(images, function (myItem) {
        active = "";
        if (i == 0) {
            active = "active";
        }
        var imageUdi = images[i].mediaKey;
        console.log("Image ID:", imageUdi)
    
        var x  = mediaResource.getById(imageUdi).then(function (media) {
            console.log(media);
            //set a property on the 'scope' called imageUrl for the returned media object's mediaLink
            //$scope.imageUrl = media.mediaLink;
            return media.mediaLink;
        });
    
        console.log("Return Value:",x);
    
        i++;
    }); 
    
    /*
    for (var i = 0; i < arrayLength; i++) {
    
        var x = mediaResource.getById(imageUdi).then(function (media) {
            console.log(media);
            //set a property on the 'scope' called imageUrl for the returned media object's mediaLink
            //$scope.imageUrl = media.mediaLink;
            return media.mediaLink;
        });
    
        console.log(x);
    }*/
    console.log("loop End!");
    $scope.trustedContent = $sce.trustAsHtml(data);
    

    });

    I need to know how to make it wait for the return value in to X and then get the URL.

    It seems to finish the foreach but not returned the value from " mediaResource.getById(imageUdi)"

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies