作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道我们可以通过调用 DotNet.invokeMethodAsync 方法从 JavaScript 更改 Blazor 中的 C# 属性值。我有以下工作,但在这个方法中我还想调用一个非静态方法。
JS 文件:
[script.js]
function ChangeContentJS() {
DotNet.invokeMethodAsync('InvokeFromJsApp', "ChangeParaContentValue", "New Content");
}
Razor 页面:
[Index.razor]
@page "/"
@inject IJSRuntime JSRuntime
<h1>Change C# property value from JavaScript</h1>
<br />
<button @onclick='ButtonClickHandler'>Change Content - JS</button>
<br />
<p>@ParaContent</p>
@code {
public static string ParaContent = "Some Text Content";
public async Task ButtonClickHandler()
{
await JSRuntime.InvokeAsync<string>("ChangeContentJS");
}
[JSInvokable]
public static void ChangeParaContentValue(string value)
{
ParaContent = value;
RunNewCode(); //DOESNT WORK AS ITS A NON-STATIC METHOD
}
public void RunNewCode()
{
jsRuntime.InvokeVoidAsync("RunFunction");
}
}
我正在尝试在静态方法中运行非静态方法(在 BLAZOR 应用程序中)。我怎么能调用这个方法?
public static void RunNewCode()
{
jsRuntime.InvokeVoidAsync("RunFunction");
}
CS0120: An object reference is required for the nonstatic field,method, or property 'JSRuntime'
最佳答案
这实际上是描述 in the docs
夏天的:
创建静态Action
更新并注册本地实例
private static Func<string, Task> ChangeParaContentActionAsync;
private async Task LocalChangeParaContentValueAsync(string value)
{
ParaContent = value;
await jsRuntime.InvokeVoidAsync("RunFunction");
}
protected override void OnInitialized()
{
base.OnInitialized();
ChangeParaContentActionAsync= LocalChangeParaContentValueAsync;
}
[JSInvokable]
public static async Task ChangeParaContentValue(string value)
{
await ChangeParaContentActionAsync.Invoke(value);
}
(未测试)
async Task
, 由于异步
InvokeVoidAsync
方法
关于javascript - 从 Blazor 中由 Javascript DotNet.invokeMethodAsync 调用的静态方法调用 C# 非静态方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66385844/
我知道我们可以通过调用 DotNet.invokeMethodAsync 方法从 JavaScript 更改 Blazor 中的 C# 属性值。我有以下工作,但在这个方法中我还想调用一个非静态方法。
我是一名优秀的程序员,十分优秀!