admin管理员组文章数量:1345584
I have a Blazor server app with two buttons. The first button calls the MenuOpen
method in C#, and the second calls the TestJSInterop
method in C#. Here is the code:
@inject IJSRuntime JSRuntime;
<!-- buttons -->
@code {
List<int> tabs = new List<int>();
protected override Task OnAfterRenderAsync(bool firstRender)
{
JSRuntime.InvokeVoidAsync("monacoInit");
return base.OnAfterRenderAsync(firstRender);
}
async Task OpenNewTab(string title)
{
int newId = await JSRuntime.InvokeAsync<int>("addEditorModel", new object[]
{
title, "test", "test", "test"
});
tabs.Add(newId);
await JSRuntime.InvokeVoidAsync("addTab", newId);
}
async Task MenuOpen()
{
await OpenNewTab("testing");
}
async Task TestJSInterop()
{
await JSRuntime.InvokeVoidAsync("console.log", "test");
}
}
In the Javascript, I've added console.log
s to each method that's being called from C#. When I press the button to call TestJSInterop
, I get the following result in the console:
test
call addEditorModel
call addTab: parameter is 0
call addEditorModel
call addTab: parameter is 0
When I press the button to call MenuOpen
, I get this result:
call addEditorModel
call addTab: parameter is 1
call addEditorModel
call addTab: parameter is 0
call addEditorModel
call addTab: parameter is 0
I know that the OpenNewTab
C# method is not being called multiple times, as when I put a breakpoint there and click the button to call TestJSInterop
I do not reach the breakpoint.
The JSRuntime.InvokeVoidAsync
call does work correctly in OnAfterRenderAsync
.
Why am I getting this behavior?
I have a Blazor server app with two buttons. The first button calls the MenuOpen
method in C#, and the second calls the TestJSInterop
method in C#. Here is the code:
@inject IJSRuntime JSRuntime;
<!-- buttons -->
@code {
List<int> tabs = new List<int>();
protected override Task OnAfterRenderAsync(bool firstRender)
{
JSRuntime.InvokeVoidAsync("monacoInit");
return base.OnAfterRenderAsync(firstRender);
}
async Task OpenNewTab(string title)
{
int newId = await JSRuntime.InvokeAsync<int>("addEditorModel", new object[]
{
title, "test", "test", "test"
});
tabs.Add(newId);
await JSRuntime.InvokeVoidAsync("addTab", newId);
}
async Task MenuOpen()
{
await OpenNewTab("testing");
}
async Task TestJSInterop()
{
await JSRuntime.InvokeVoidAsync("console.log", "test");
}
}
In the Javascript, I've added console.log
s to each method that's being called from C#. When I press the button to call TestJSInterop
, I get the following result in the console:
test
call addEditorModel
call addTab: parameter is 0
call addEditorModel
call addTab: parameter is 0
When I press the button to call MenuOpen
, I get this result:
call addEditorModel
call addTab: parameter is 1
call addEditorModel
call addTab: parameter is 0
call addEditorModel
call addTab: parameter is 0
I know that the OpenNewTab
C# method is not being called multiple times, as when I put a breakpoint there and click the button to call TestJSInterop
I do not reach the breakpoint.
The JSRuntime.InvokeVoidAsync
call does work correctly in OnAfterRenderAsync
.
Why am I getting this behavior?
Share Improve this question edited Apr 19, 2020 at 19:39 Merlin04 asked Apr 19, 2020 at 18:40 Merlin04Merlin04 2,3374 gold badges24 silver badges32 bronze badges1 Answer
Reset to default 6I was trying to understand your partial code, but it seems as though I've failed. However, you should take into account the following:
The OnAfterRenderAsync method is executed each time your ponent is being rendered. It is primarily used to initialize JavaScript objects. When you want to initialize your JavaScript objects (I guess only once, right ?), the code should be placed within an if statement checking that this is the first time:
if( firstRender ) { // Here's you place code that is executed only once // the parameter firstRender is evaluted to true only the first time // the OnAfterRenderAsync method is executed }
Only UI events, such as the click event, cause your ponent to re-render. If you need to re-render your ponent in order to see changes made otherwise, you'll have to call the StateHasChanged method
If your app is pre-rendering ( render-mode="ServerPrerendered" ), your ponents are rendered twice, and thus you may see messages printed in the console window twice. This is OK.
Hope this helps... If you did not solve your issues, please post a plete repo of your code, and I'll try to help you with this.
本文标签:
版权声明:本文标题:javascript - JSRuntime.InvokeVoidAsync in Blazor Server app calling multiple functions when I only tell it to call one - Stack O 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743808816a2542679.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论