我們希望在Umbraco的DocumemtType中實現一個複選框[Type:true/false]。在Umbraco中輸入True/False
我們目前的項目必要性:
的複選框,這將決定圖像是否應該
的代碼去這樣一個鏈接或彈出...
var child= @Model;
if(child.GetProperty("popUp").Value.ToString() == "1")
{
// true means image will act as popup
}
else
{
// false means image will act as link
}
但問題是出現錯誤「無法對空引用執行運行時綁定」
我也試過這樣的代碼,
if (child.GetProperty("popup").Value.Equals("1"))
{
}
或
if (child.GetProperty("popup").Value.ToString().Equals("1"))
{
}
,但仍然沒能得到它。所有建議都歡迎。
不能鍵入「串」隱式轉換爲「布爾」是,當我用你的代碼的Martijn麪包車明鏡,我收到錯誤-放 –