Add <script>...</script> content from database on page

I have podcast player content saved in database table and would like to show them on the page (php). Is there a way to do this in the meantime dierectly with server connect and not classic php code?

The content looks like this:

<script class="podigee-podcast-player" src="https://cdn.podigee.com/podcast-player/javascripts/podigee-podcast-player.js" data-configuration="embed?context=external"></script>

Hi.
On static success event of the SC, you can inject the string as JS code on the page.

I currently have a dynamic swiper with cards and each of the card represents “a podcast”. How would you bind a static success event of the SC here?

Please explain your setup a bit more.

I’ve got the podcasts saved in a database with the player code in one of the fields. On the page I have a dynamic swiper with cards and button which open a modal with filtered podcast detail. There I’d like to show the content of the database field, the . But Wappler can’t handle it this way:

Wappler just shows the text and can’t execute it. Neither using dmx-html.

I just wonder if there is a solution in the meantime for this.

Is it just the data-configuration that changes each time? Could you just update that using a JS function?

Hmmm, yes. Only the configuration changes … that would be an idea, or just save the configuration data. Thanks, I’ll give it a try … :slight_smile:

So on modal show static event, you can call a JS function to remove any existing code in modal body, and inject the script code as stored in the DB.

You can fetch the script code by storing the index of slide in a dmx variable, and using that with dmx parse.

Thanks sid. Let’s see if Patrick can improve the Wappler implementation for this kind of dynamic data.

Does it work when you do it outside the swiper? The dmx-html should just work fine to inject a script tag, haven’t tested it within a swiper, will do some testing when I have some time.

I’ve tried to add it in a modal and it doesn’t work.

Seems that browsers do not execute javascript that is inserted with innerHTML.

Use the following script:

dmx.Attribute('html2', 'mounted', function(node, attr) {
    this.$addBinding(attr.value, function(value) {
        if (value != null) {
            node.innerHTML = value;

            try {
                var scripts = node.querySelectorAll('script[type="text/javascript"],script:not([type])');
    
                dmx.array(scripts).forEach(function(script) {
                    try {
                        var newScript = document.createElement('script');
                        newScript.type = 'text/javascript';
                        if (script.src) newScript.src = script.src;
                        if (script.innerHTML) newScript.innerHTML = script.innerHTML;
                        script.onerror = function() {
                            console.error('ERROR', arguments);
                        }
                        script.parentNode.replaceChild(newScript, script);
                    } catch (e) {
                        console.error('Error executing script ' + script.src, e);
                    }
                });
            } catch (e) {
                console.error('An error occurred while trying to execute scripts', e);
            }
        } else {
            node.innerHTML = '';
        }
    });
});

Change dmx-html to dmx-html2.

Thanks Patrick. But it doesn’t seem to work. Maybe I can send you the ftp data by pm and you can have a look?

Sure, send me the info in a pm and I will have a look at it.

1 Like

Hey, you solved the problem? I need help! My problem is equal.

Hi bsg, We solved it (on a php page) by using php code:

<?php echo($rsPodcast->getColumnVal("PodcastCode")); ?>

How to solve on nodejs?