这是模型。
public class Player { public String ImagePath { get { return "~/Content/img/sql_error.JPG"; } }
这是我的.cshtml
和我试过:
@model SoulMasters.Models.Game.Player @{ ViewBag.Title = "Game"; Layout = "~/Views/Shared/_GameLayout.cshtml"; var imagePath = @Model.ImagePath; } <fieldset> <legend>Player</legend> <div class="display-field"> @Html.DisplayFor(model => model.ImagePath) </div> @imagePath <div style="padding:10px;"> <img src=@imagePath alt="Sample Image" width="300px" /> <img alt="asd" > model.ImagePath; </img> </div> </fieldset>
结果是简单的文本:
~/Content/img/sql_error.JPG ~/Content/img/sql_error.JPG Sample Image asd model.ImagePath;
我也试过:
<img src="~/Content/img/sql_error.JPG" alt="Sample Image" width="300px" />
和这个工作
如何从路径显示该图像?
模型图像路径可以根据设置而不同。
任何其他想法?
我现在不知道如何剃刀语法工作。
谢谢,
Gabriel Sas
解决方法
在你的视图尝试这样
<img src= "@Url.Content(Model.ImagePath)" alt="Image" />