JS:我应该使用列表或字典,还是两者混合使用?

时间:2019-05-02 14:31:22

标签: javascript

我正在尝试创建一个包含每个元素及其坐标的字典。

在字典条目中使用逗号会导致错误。

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" })

还是应该在列表中使用字典还是在字典中使用列表?

0 个答案:

没有答案