0

我正在开发一个 nopcommerce 网站。我希望根据产品名称更改图片库。例如,如果产品名称包含Flowers display gallery 1 else display gallery 2

我目前已经编写了代码

@Html.Widget("productdetails_top")
        @using (Html.BeginRouteForm("Product", new { SeName = Model.SeName }, FormMethod.Post, new { id = "product-details-form" }))
        {
            @helper renderProductLine(ProductDetailsModel.ProductVariantModel product)
            {
                if (product.Name.Contains("Flowers"))
                {
                    bool isFlowersGallery = true;  
                }        

            <div class="product-essential">
                @Html.Widget("productdetails_before_pictures")
                <!--product pictures-->


              @if (isFlowersGallery)
                {

我现在收到错误 isFlowersGallery 在当前上下文中不存在。

我做错了什么吗?

4

1 回答 1

0

尝试将 isFlowersGallery 的声明移出:

        bool isFlowersGallery;

        @helper renderProductLine(ProductDetailsModel.ProductVariantModel product)
        {
            if (product.Name.Contains("Flowers"))
            {
                isFlowersGallery = false;  
            }        
于 2013-10-17T10:21:27.803 回答