0

只是一个简单的问题,是否可以在电灯开关的屏幕内显示静态图像?

我想单击“添加数据项”-> 选择“本地属性”并键入“图像”。现在与以前的版本不同,我无法选择文件路径,所以我需要通过 post-Render 部分编写一些 js,我在这里输入什么?

感谢您给我的任何帮助,尝试了几种方法均未成功。

4

1 回答 1

1

最近解决了类似的情况,我们实现了以下帮助程序承诺操作功能:-

function GetImageProperty (operation) {
    var image = new Image();
    var canvas = document.createElement("canvas");
    var ctx = canvas.getContext("2d");
    // XMLHttpRequest used to allow external cross-domain resources to be processed using the canvas.  
    // unlike crossOrigin = "Anonymous", XMLHttpRequest works in IE10 (important for LightSwitch) 
    // still requires the appropriate server-side ACAO header (see https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image)
    var xhr = new XMLHttpRequest();
    xhr.onload = function () {
        var url = URL.createObjectURL(this.response);
        image.onload = function () {
            URL.revokeObjectURL(url);
            canvas.width = image.width;
            canvas.height = image.height;
            ctx.drawImage(image, 0, 0);
            var dataURL = canvas.toDataURL("image/png");
            operation.complete(dataURL.substring(dataURL.indexOf(",") + 1));
        };
        image.src = url;
    };
    xhr.open('GET', this.imageSource, true);
    xhr.responseType = 'blob';
    xhr.send();
};

添加本地属性(添加数据项 -> 本地属性 -> 类型:图像 -> 名称:ImageProperty)并将其放入内容项树后,可以在 _postRender 例程中以下列方式执行承诺操作:-

msls.promiseOperation
(
    $.proxy(
        GetImageProperty,
        { imageSource: "content/images/user-splash-screen.png" }
    )
).then(
    function (result) { 
        contentItem.screen.ImageProperty = result; 
    }
);

或者,它可以在屏幕的 created 函数中调用如下: -

msls.promiseOperation
(
    $.proxy(
        GetImageProperty,
        { imageSource: "https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/pie.png" }
    )
).then(
    function (result) { 
        screen.ImageProperty = result; 
    }
);

上述调用还表明,除了显示 LightSwitch 项目的本地图像外,还可以将 imageSource 设置为外部 url(前提是外部站点使用适当的服务器端 ACAO 标头以允许跨域访问)。

编辑:我已经更新了这个辅助函数来稍微改进它来回答这篇文章Add static image to Lightswitch HTML 2013 Browse Screen

于 2014-09-09T15:01:45.890 回答