Пример приложения Cloudflare, как изменить отображение картинки с URL?
Пример приложения для cloudflare приведен ниже. Мне нужно показать в приложении изображение с URL-адреса. Как я могу сделать это в JS?
Этот пример кода предоставлен сайтом cloudflare, так что любой может запустить приложение с этого.
(function () {
'use strict'
if (!window.addEventListener) return // Check for IE9+
var options = INSTALL_OPTIONS
var element
// updateElement runs every time the options are updated.
// Most of your code will end up inside this function.
function updateElement () {
element = INSTALL.createElement(options.location, element)
// Set the app attribute to your app's dash-delimited alias.
element.setAttribute('app', 'example')
element.innerHTML = options.message
}
// INSTALL_SCOPE is an object that is used to handle option changes without refreshing the page.
window.INSTALL_SCOPE = {
setOptions: function setOptions (nextOptions) {
options = nextOptions
updateElement()
}
}
// This code ensures that the app doesn't run before the page is loaded.
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', updateElement)
} else {
updateElement()
}
}())