Replies: 1 comment 1 reply
-
@yc-2503 说实话不知道你要表达啥,能否把问题描述清楚,可以参考 issue 模板。你想要什么或者预期结果是什么,实际结果是什么,提供复现示例工程,不要贴点代码,这对解决问题帮助非常小。 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
public IEnumerable Columns 作为列名,在 OnInitializedAsync 中从后端异步读取列的配置,就没办法正常显示。
如果改成 public IEnumerable Columns = ["A","B","C"],就会显示A ,B, C 三列,但是也不会显示后台配置的列
`@page "/trackin"
@using PSMS.Core.MyHttpClient
@using PSMS.DirectView.Contracts
@using PSMS.DirectView.MyHttpClient
@using System.Diagnostics.CodeAnalysis
@rendermode InteractiveAuto
TrackIn
@code {
[Inject] private WIPMPTROQueryService wipmQueryService { get; set; }
[Inject] private DirectViewService directViewService { get; set; }
}
`
Beta Was this translation helpful? Give feedback.
All reactions