這段代碼在構建我的項目時失敗。如果聲明必須檢查ParkingLot是否爲真。我認爲這樣做是下面的代碼的方式:if語句失敗時爲true
<th class="small-12 large-6 columns last">
<table>
<tr>
<th width="300">
<p class="text-left small-text-left">
@if(Model.Point.Store.JsonDynamic.En.Motel.ParkingLot == True)
{
<span>Possibility for parking</span><br>
}
</p>
</th>
<th class="expander"></th>
</tr>
</table>
</th>
但我得到這個錯誤:
Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Cannot implicitly convert type ''Newtonsoft.Json.Linq.JValue'' to ''bool''. An explicit conversion exists (are you missing a cast?)
任何人都可以看到我在做什麼錯在這裏?
嘗試鑄造爲布爾。 @if((bool)Model.Point.Store.JsonDynamic.En.Motel.ParkingLot == True){...} – Aaron