私は次のコードを持っています:
Dim result = New Dictionary(Of String, String)
For Each item In food
result.Add(StrConv(item.Shrt_Desc.Replace(",", ", "), VbStrConv.ProperCase), item.Shrt_Desc)
Next
Return Json(result, JsonRequestBehavior.AllowGet)
JSONで次のキーと値にする必要があります。
labelおよびvalueプロパティを持つオブジェクトの配列:[{label: "Choice1"、value: "value1"}、...]
これどうやってするの?ありがとうございました。