Blazor到Javascript字节数组互操作

Blazor to Javascript byte array interop(Blazor到Javascript字节数组互操作)
本文介绍了Blazor到Javascript字节数组互操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将byte数组从Blazor客户端传递到javascript函数:

private async void ShowImage()
{
    SelectedImageBytes = await GetImageData();
    if (SelectedImageBytes.Any())
    {
        ReceivedDataLength = SelectedImageBytes.Length;
        //ReceivedDataLength is 131072, which is correct
        JS.InvokeVoidAsync("JS.setImage", SelectedImageBytes, 256, 256);
        
    }

    StateHasChanged();
}

在Javascript端:

function setImage(data, width, height)
{
    console.log("On Javascript I have received an array of " + data.length);
    //data.length is 174764
    console.log(data);

    //...
}

console.log(data)输出以下内容:

对我来说,它似乎是我的二进制数据的Base64字符串表示。根据维基百科的说法,从字节数组到base64字符串表示,大小大约增加了33%,本例也是如此:131072*1.33~174764

我的问题是:

  • 如何将字节数组从Blazor(C#)传递和接收到Javascript,而不将其转换为字符串
  • 如果无法执行上述操作,则在Javascript端将Base64字符串转换为字节数组的最佳方式是什么。

推荐答案

我又试了一次:

C#

public void CallJsUnMarshalled()
{
    var unmarshalledRuntime = (IJSUnmarshalledRuntime)JS;
    unmarshalledRuntime.InvokeUnmarshalled<byte[], int>("JsFunctions.MyFunctionUnmarshalled", MyBytes);
}

Javascript:

function MyFunctionUnmarshalled(bytes)
{
    const dataPtr = Blazor.platform.getArrayEntryPtr(bytes, 0, 4);
    const length = Blazor.platform.getArrayLength(bytes);
    var shorts = new Int16Array(Module.HEAPU8.buffer, dataPtr, length);
    return 0;
}

InvokeUnmarshalled需要返回,因此模板参数中有int。相反,可能必须返回对该对象的引用来释放它。如果有人能对此发表评论,我将不胜感激(当字节数组不再使用时,javascript是否会释放该内存?)。

第一次测试显示改善了50倍!

这篇关于Blazor到Javascript字节数组互操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)