根据产品名称更改图像库(将布尔值设置为 true)
本文关键字:布尔值 设置 true 产品名 图像 | 更新日期: 2023-09-27 18:35:41
我正在开发一个nopcommerce网站。 我希望根据产品名称更改图片库。 例如,如果产品名称包含 花卉展示画廊 1 其他展示库 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 的声明移出:
bool isFlowersGallery;
@helper renderProductLine(ProductDetailsModel.ProductVariantModel product)
{
if (product.Name.Contains("Flowers"))
{
isFlowersGallery = false;
}