I got a Dictionary<string, List<string>> in my controller , and I have a js file in /wwwroot/view-resources, so How to pass the Dictionary to js file
I have try var result = '@Model.Dic' ,and I got a string-type variable @Model.Dic,
I also have try to use a hidden input with value="@{@Model.EditList}", and I got a result
System.Collections.Generic.Dictionary`2[System.String,System.Collections.Generic.List`1[System.String]]
I use abp with .netcore