admin管理员组文章数量:1344975
I have this in Program.cs. My intent is that when userSession.OnIdentityChangedAsync has been fired (the user is allowed to impersonate an identity) the cascading value of ActingIdentity is then refreshed throughout the app.
builder.Services.AddCascadingValue(
sp =>
{
var userSession= sp.GetRequiredService<IUserSession<TPrincipal>>();
var source = new CascadingValueSource<ActingIdentity<TPrincipal>>(
"ActingIdentity",
()=>userSession.ActingIdentity,
isFixed:false);
var log = sp.GetRequiredService<Microsoft.Extensions.Logging.ILogger>();
userSession.OnIdentityChangedAsync += async () =>
{
await source.NotifyChangedAsync();
log.LogDebug("ActingIdentity Cascading Value Changed to {ActingIdentity}:{@source}",
userSession.ActingIdentity.ActingAs.Identity?.Name??"<null>",
source);
};
return source;
});
But what my logs show me is:
- The event handler you see here is called, so I am confident that source.NotifyChangedAsync() was called
- OnParametersSetAsync() does get called on a page that has a matching CascadingParameter.
- But the parameter value passed is stale. Only the initial value of the parameter is ever seen, subsequent changes are not passed on.
I'm on Net8 with InteractiveServer rendering:
builder.Services
.AddRazorComponents()
.AddInteractiveServerComponents();
If instead of a root cascading value service I instead use <CascadingValue ...>
markup in my Layout page, the changed value is passed to the page as expected.
Why doesn't my attempt at using AddCascadingValue()
work?
本文标签: Blazor root level Cascading Value doesn39t propagate fresh value after changeStack Overflow
版权声明:本文标题:Blazor root level Cascading Value doesn't propagate fresh value after change - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743780681a2537769.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论