gpt4 book ai didi

javascript - 如何在 Javascript 中获取 C# 枚举

转载 作者:行者123 更新时间:2023-12-03 00:50:42 27 4
gpt4 key购买 nike

我的 C# 代码中有一个 enum,我想在 javascript 中获得相同的 enum

有没有办法不用硬编码就能做到这一点?

最佳答案

您可以将所有枚举值序列化为 JSON:

private void ExportEnum<T>()
{
var type = typeof(T);
var values = Enum.GetValues(type).Cast<T>();
var dict = values.ToDictionary(e => e.ToString(), e => Convert.ToInt32(e));
var json = new JavaScriptSerializer().Serialize(dict);
var script = string.Format("{0}={1};", type.Name, json);
System.Web.UI.ScriptManager.RegisterStartupScript(this, GetType(), "CloseLightbox", script, true);
}

ExportEnum<MyEnum>();

这会注册一个脚本,例如:

MyEnum={"Red":1,"Green":2,"Blue":3};

关于javascript - 如何在 Javascript 中获取 C# 枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5177755/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com