我正在尝试创建一个包含每个元素及其坐标的字典。
在字典条目中使用逗号会导致错误。
function acceptOptions<I extends string>(options: IOptions<I>) {}
acceptOptions(bo); // okay, I is inferred as "Secondary" | "Success" | "Warning" | "Danger"
或
@Html.LabelFor(model => model.ServiceName, htmlAttributes: new { @class = "SerivcesRegistrationLabel" , "control-label col-md-2" })
@Html.LabelFor(model => model.ServiceName, htmlAttributes: new { @class = "SerivcesRegistrationLabel" "control-label col-md-2" })
还是应该在列表中使用字典还是在字典中使用列表?