ページ内の画像に問題があります。私のデータベースでは、次のような画像パスについて言及しました。
"/images/smallimages/sandal1.png "
正常に動作し、ローカル ホストのビューに画像を表示していますが、コードをサーバーにアップロードした後、画像が表示されません。画像の URL にチルダ (~) 記号を配置する必要がありますか? そして、私は以下のように画像パスをバインドしています:
<a href="@Html.DisplayFor(m=>m.larImagePath1)" class="MagicZoom" id="Zoomer" rel="selectors-effect-speed:100">
<img src="@Html.DisplayFor(m=>m.medImagePath1)" /></a><br/>
<!-- selector with own title -->
<a href="@Html.DisplayFor(m=>m.larImagePath1)" rel="zoom-id:Zoomer;" rev="@Html.DisplayFor(m=>m.medImagePath1)">
<img src="@Html.DisplayFor(m=>m.smaImagePath1)"/></a>
<!-- selector without title and with own zoom window size -->
<a href="@Html.DisplayFor(m=>m.larImagePath2)" rel="zoom-id:Zoomer;selectors-effect-speed: 200" rev="@Html.DisplayFor(m=>m.medImagePath2)">
<img src="@Html.DisplayFor(m=>m.smaImagePath2)"/></a>