如何作为方法访问序列化程序中定义的属性?
@Html.DropDownList("Domains", (IEnumerable<SelectListItem>)ViewBag.Domains)
我需要进行委派,它以前在版本0.8 /
中可用答案 0 :(得分:1)
属性方法不再在序列化程序上定义,必须通过对象显式访问
class MySerializer
attributes :foo, :bar
def foo
bar + 1 # bar does not work, needs to be object.bar in 0.10
end
end