最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Passing Arrays to blazors IJSRuntime.InvokeAsync - Stack Overflow

programmeradmin1浏览0评论

I wonder what is the best way to pass an array to IJSRuntime.InvokeAsync.
The problem I stumbled upon is that blazor will pass each element of the array as a parameter to the javascript function since InvokeAsync has an open parameter list and will not know if you just passed arguments of the same type or an array.

For now I just go with a second parameter like InvokeAsync("functionname", array, false).

Any other suggestions? Better solutions?

I wonder what is the best way to pass an array to IJSRuntime.InvokeAsync.
The problem I stumbled upon is that blazor will pass each element of the array as a parameter to the javascript function since InvokeAsync has an open parameter list and will not know if you just passed arguments of the same type or an array.

For now I just go with a second parameter like InvokeAsync("functionname", array, false).

Any other suggestions? Better solutions?

Share Improve this question edited Aug 4, 2021 at 16:15 Tomerikoo 19.5k16 gold badges55 silver badges67 bronze badges asked Aug 4, 2021 at 16:09 fvetschfvetsch 1911 silver badge12 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

You'd either have to cast your array to object* or call the Extension method directly:

var array = Array.Empty<Baz>();
// Casting to object
JS.InvokeAsync<Foo>("bar", (object)array);

// Explicitly call the extension method:
JSRuntimeExtensions.InvokeAsync<Foo>(JS, "bar", array);

Or just use the overload it thinks you are attempting to call:

JS.InvokeAsync<Foo>("bar", new object[] { array });

* Based on my limited knowledge of C#'s Overload Resolution.

发布评论

评论列表(0)

  1. 暂无评论