How to adjust field names in Nancy model bindings?

帅比萌擦擦* 提交于 2019-12-05 23:29:41

问题


In a web application I use Nancy for creating a REST service. Unfortunately, in HTML our field names are lowercase (firstName), but the appropriate properties in .NET are uppercase (FirstName). Moreover, we have some fields that don't map 1:1, such as id that shall become TicketId in .NET.

Now I have two question on this:

  1. Is Nancy case-sensitive or case-insensitive when it comes to field names?
  2. Does Nancy provide some sort of mapping for field names?

回答1:


Support for this is there, but it's not as fully featured as I'd like.

If you take a look at the IFieldNameConverter interface (it's default implementation is DefaultFieldNameConverter), that's what handles converting field names for things like casing.

For more complicated mappings you'd have to implement an ITypeConverter, you could just "wrap" the default converter(s) - depending on your data - and alter the input before calling the default one.



来源:https://stackoverflow.com/questions/18780967/how-to-adjust-field-names-in-nancy-model-bindings

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!