web-dev-qa-db-ja.com

asp.net MVC 4およびRazorビューでパスから画像を表示する方法は?

私は次のモデルを持っています:

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" />

パスからその画像を表示する方法は?画像パスは設定に基づいて異なる可能性がありますか?他のアイデアはありますか?

かみそりの構文がどのように機能するかについては、今はよくわかりません。

57
Sas Gabriel

あなたのビューでこのようにしてみてください

  <img src= "@Url.Content(Model.ImagePath)" alt="Image" />
121
Adithya

この答えで試すこともできます:

 <img src="~/Content/img/@Html.DisplayFor(model =>model.ImagePath)" style="height:200px;width:200px;"/>
6
DKR

これを試して 、

<img src= "@Url.Content(Model.ImagePath)" alt="Sample Image" style="height:50px;width:100px;"/>

(or)

<img src="~/Content/img/@Url.Content(model =>model.ImagePath)" style="height:50px;width:100px;"/>
2
Parameswaran
 @foreach (var m in Model)
    {
      <img src="~/Images/@m.Url" style="overflow: hidden; position: relative; width:200px; height:200px;" />
    }
1
Debendra Dash