gpt4 book ai didi

asp.net-mvc - 非静态字段,方法或属性需要对象引用

转载 作者:行者123 更新时间:2023-12-03 08:56:22 27 4
gpt4 key购买 nike

因此,我想将URL字符串转换为具有“播放”名称的超链接,该超链接会将用户带到视频网站链接。

这是我的视频链接的类别。

public class Video
{
public int Id { get; set; }
public string Video_name { get; set; }
[Display(Name = "Date added")]
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
public Nullable<System.DateTime> Dateadded { get; set; }
public string Tag { get; set; }
[Display(Name = "Visits")]
public int Video_Visits { get; set; }
public string URL { get; set; }
[Display(Name = "User Name")]
public string UserName { get; set; }
public string User_Id { get; set; }
[Display(Name = "Parental Rating")]
public string Parental_rating { get; set; }
public Nullable<int> Rating { get; set; }

public virtual ApplicationUser User { get; set; }
public virtual Rating Rating1 { get; set; }
public virtual P_rating P_rating { get; set; }

}

我认为我要添加
<a href="@testing2.Models.Video.URL">play</a>

但收到错误:

Error 1 An object reference is required for the non-static field, method, or property 'testing2.Models.Video.URL.get' c:\Users\Setup\Documents\Visual Studio 2013\Projects\testing2\testing2\Views\Video1\Index.cshtml 65 23 testing2



有人能帮忙吗?

最佳答案

在 View 页面中将Video类设置为模型。

您的链接将为

<a href="@Model.URL">play</a>

关于asp.net-mvc - 非静态字段,方法或属性需要对象引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24166348/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com