Html.BuildUrlFromExpression 带有操作的引用类型参数
我希望我的术语是正确的。 如果没有,请编辑。
从我的 Linq2Sql 类中,我有一个 Color 类。 我的控制器的操作之一接受此 Color 类的实例。
我想创建一个指向此操作的链接,因此我使用
<%=Html.ActionLink<ColorController>(c=>c.Details(ViewData.Model.ActiveColor), "test")%>
Where ViewData.Model.ActiveColor 当然是前面提到的 Color 实例。
呈现如下:
/颜色/详细信息?颜色=- 当然不完全是我的想法..
我做错了什么? 我应该开始创建自定义 ModelBinder 吗?
编辑
我找到了“-”的出处。 显然 ActionLink 正在调用 ToString。 这很奇怪,因为我看到更多的是用字符串来显示某些内容,然后识别某些内容(这不是 GetHash 的用途吗?)。 即使在我的对象上实现了 Iserailizable 接口之后,它仍然使用 ToString 方法。 我可以在某处定义如何序列化我的类而不是使用 ToString() 吗? 我感觉我完全走错了路。
I hope my terminology is right. Edit if not.
From my Linq2Sql classes I have a Color class.
One of my controller's actions accepts an instance of this Color class.
I want to create a link to this action so I use
<%=Html.ActionLink<ColorController>(c=>c.Details(ViewData.Model.ActiveColor), "test")%>
Where ViewData.Model.ActiveColor is off course the aforementioned instance of Color.
This renders as follows:
/Color/Details?color=-
Not exactly what I had in mind off course..
What am I doing wrong? Should I start creating custom ModelBinders?
EDIT
I have found where the "-" came from. Apparantly the ActionLink is calling upon ToString. This is rather weird since I see tostring more of way to display something then to identify something (isn't that what GetHash is for?).
Even after implementing the Iserailizable interface on my object, it's still using the ToString method. Can I define somewhere how to serialize my class rather then using the ToString()? I'm feeling like I'm completely on the wrong track.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Actionlink 确实正在调用 ToString()。 我使用日期遇到了同样的问题。 在我的网址中,我希望日期为 dd-mm-yyyy,而不是默认的 DateTime.ToString()。
第一个选项是重写 Color 的 ToString() 方法。 如果这是不可能的(与 DateTime 一样),还有其他方法,但它们有点“hacky”......
Actionlink is indeed calling upon ToString(). I ran into the same problem using dates. In my urls I wanted dates to be dd-mm-yyyy instead of the default DateTime.ToString().
First option is to override your Color's ToString() method. If that isn't possible (as with DateTime) there are other ways, but they're a bit "hacky"...