- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个服务器端 Blazor 应用程序。在 Blazor 下编写 razor 页面时有两种选择:在一个“.razor”文件中设计代码和 C# 代码,以及将设计和代码文件分离为“.razor”和“.razor.cs”文件。问题是 Visual Studio 不完全支持 razor 页面中的智能感知,但您始终可以将代码放入单独的文件并使用完整的智能感知支持。这是一个最小的示例 Razor 页面,其中包含代码块:
@page "/minimalsample"
<h3>MinimalSample</h3>
<MatChip Raised="true" @onclick="@OpenUp" @ref="SampleMenuButton" Label="Actions" LeadingIcon="cloud_download"></MatChip>
<MatMenu @ref="SampleMenu">
<MatList SingleSelection="false" TwoLine="false">
<MatListItem OnClick="@Format_Clicked" Style="height: auto">
Format C: Drive
</MatListItem>
<MatListItem OnClick="@Shred_Clicked" Style="height: auto">
Shred files
</MatListItem>
</MatList>
</MatMenu>
<br />
@ActionText
@code {
private BaseMatMenu SampleMenu;
private BaseMatChip SampleMenuButton;
private string ActionText;
private void OpenUp()
{
SampleMenu.OpenAsync(SampleMenuButton.Ref);
}
private void Format_Clicked()
{
ActionText = "Formatting C: Drive...";
}
private void Shred_Clicked()
{
ActionText = "Shredding user files...";
}
}
这段代码工作正常。当我单击按钮时它会打开一个菜单,菜单项也可以正常工作。我决定分离代码和设计文件,以便能够使用 Visual Studio (2019) 的智能感知功能,现在我收到警告说:
Warning CS0649 Field 'MinimalSample.SampleMenu' is never assigned to, and will always have its default value null
“.razor”页面如下:
@page "/minimalsample"
@namespace Pages
<h3>MinimalSample</h3>
<MatChip Raised="true" @onclick="@OpenUp" @ref="SampleMenuButton" Label="Actions" LeadingIcon="cloud_download"></MatChip>
<MatMenu @ref="SampleMenu">
<MatList SingleSelection="false" TwoLine="false">
<MatListItem OnClick="@Format_Clicked" Style="height: auto">
Format C: Drive
</MatListItem>
<MatListItem OnClick="@Shred_Clicked" Style="height: auto">
Shred files
</MatListItem>
</MatList>
</MatMenu>
<br />
@ActionText
代码文件“.razor.cs”是:
using MatBlazor;
using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace Pages
{
public partial class MinimalSample : ComponentBase
{
private BaseMatMenu SampleMenu;
private BaseMatChip SampleMenuButton;
private string ActionText;
private void OpenUp()
{
SampleMenu.OpenAsync(SampleMenuButton.Ref);
}
private void Format_Clicked()
{
ActionText = "Formatting C: Drive...";
}
private void Shred_Clicked()
{
ActionText = "Shredding user files...";
}
}
}
我不得不更改按钮和菜单引用以具有一些默认值(只是为了让编译器满意!)。
private BaseMatMenu SampleMenu = new BaseMatMenu();
private BaseMatChip SampleMenuButton = new BaseMatChip();
private string ActionText = "";
我知道这不是必需的,它在没有新 运算符的情况下也能正常工作。然而,编译器仍然提示已分配变量“ActionText”,但从未使用过它的值。
我想以适当的方式摆脱警告(将代码移动到 .razor 页面不是这里的选项)。我该怎么做才能摆脱这些警告?这有可能是编译器错误吗?
更新:
@NikProtsman 提供了一个可行的解决方案。我刚刚删除了 partial 修饰符并将“.razor.cs”中类定义的名称从
更改为public partial class MinimalSample : ComponentBase
到
public class MinimalSampleBase : ComponentBase
我还将 private 修饰符更改为 protected
...
...
public class MinimalSampleBase : ComponentBase
{
protected BaseMatMenu SampleMenu;
protected BaseMatChip SampleMenuButton;
protected string ActionText;
protected void OpenUp()
{
SampleMenu.OpenAsync(SampleMenuButton.Ref);
}
protected void Format_Clicked()
{
ActionText = "Formatting C: Drive...";
}
protected void Shred_Clicked()
{
ActionText = "Shredding user files...";
}
}
...
...
后来我像这样更改了“.razor”页面
@page "/minimalsample"
@namespace Pages
// added this line
@inherits MinimalSampleBase
...
...
现在我没有收到警告,我的代码按预期运行。
最佳答案
文档显示使用部分类方法,但我总是更幸运地使用继承模型。对于您的 .razor.cs 文件,您可以尝试将该类称为基类:public class MinimalSampleBase : ComponentBase
,然后在您的 .razor 文件中,添加 @inherits MinimalSampleBase
。您需要在标记页面上使用的所有私有(private)
字段和方法现在都应该受到保护
,但是支持字段和支持方法仍然应该被标记为私有(private)。基类现在变成了“ View 模型”并且仍然获得完整的 VS Intellisense 和重构支持,并且您可以获得代码隐藏方法的所有好处,并且希望在您的情况下它会使那些编译器警告消失。
我还发现部分类方法会在我需要实现接口(interface)的任何地方引起问题,例如设置服务的事件订阅和使用 IDisposable 在拆卸时取消订阅。然而,继承模型工作得很好。
请试一试并反馈,我认为这会有所帮助,但我非常想知道答案。
关于c# - Blazor 中的单独代码文件提供虚假警告消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61427520/
我试图弄清楚接受 OpenID 登录的网站如何无法通过简单的主机文件更新来指向伪造的 OpenID 提供商。 假设我想侵入 Joe Smith 的帐户,在这个例子中,假设他的 OpenID 提供商是
#include #include #include #include #include #include #include #include #include #include #define P
根据此讨论 - "RESTful API - Correct behavior when spurious/not requested parameters are passed in the req
如果编译为 Cand C++ 源代码,这个简单的代码片段会使用 g++ 4.7.0 生成“函数调用中缺少标记”警告。我相信这是编译器的错误,因为最终的 NULL值(value)就在那里。 #inclu
我读到,有时 && 运算符用于“短路”JavaScript,使其相信返回值 0 是 0 而不是 NaN,因为 0 在 JavaScript 中是一个虚假数字。我一直在四处寻找,想弄清楚这一切意味着什么
我正在使用 Borland(又名“Embarcodegearland”)C++Builder 2007 编译器,它有一个小错误,系统头文件中的某些 static const 项可能导致虚假的 "xyz
我是一名优秀的程序员,十分优秀!