作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在产品页面上显示从布局上传的尺寸,因为我有很多产品并且每个 SKU 都有不同的尺寸,所以我会浪费很多时间来添加每个尺寸作为产品规范。
我找到了 1.9 版的扩展,但我正在使用 3.0。
最佳答案
将这些属性添加到 Models\Catalog\ProductDetailsModel:
public decimal Weight { get; set; }
public decimal Length { get; set; }
public decimal Width { get; set; }
public decimal Height { get; set; }
在CatalogController 的PrepareProductDetailsPageModel 方法中为这些参数赋值。为此,您应该找到字符串“var model = new ProductDetailsModel()”并在“IsCurrentCustomerRegistered = _workContext.CurrentCustomer.IsRegistered()”之后添加以下行:
Weight = product.Weight,
Length = product.Length,
Width = product.Width,
Height = product.Height
将新属性添加到 ProductTemplate.Simple.cshtml 和 ProductTemplate.Grouped.cshtml View :
<div>
<span class="label">Weight:</span>
<span class="value">@Model.Weight</span>
</div>
<div>
<span class="label">Width:</span>
<span class="value">@Model.Width</span>
</div>
<div>
<span class="label">Length:</span>
<span class="value">@Model.Length</span>
</div>
<div>
<span class="label">Height:</span>
<span class="value">@Model.Height</span>
</div>
例如,在“@Html.Partial("_SKU_Man_Stock", Model)”行之后。
关于nopcommerce - 如何获取产品页面上的尺寸? (不作为产品规范)- nopCommerce,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18341982/
我是一名优秀的程序员,十分优秀!