作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在使用 mvc 框架的 nopcommerce2.2 中,如何将数量部分添加到多个产品中的产品中,即 _ProductBox.cshtml?其实我到单品页面的时候,会拿到数量部分,但是不能把数量部分转移到多产品页面,怎么办?
最佳答案
我在 2.3 上,所以这可能与您的版本不同。
您需要更改一些有关 _ProductBox.cshtml 的内容。
当您转到单个产品页面时,它看起来像是使用 _ProductVariantAddToCart.cshtml 作为 View 。此 View 具有所需数量的输入
@if (!Model.DisableBuyButton || !Model.DisableWishlistButton)
{
@Html.LabelFor(model => model.EnteredQuantity)<text>:</text>
@Html.TextBoxFor(model => model.EnteredQuantity, new { style = "Width: 40px;" })
}
关于nopcommerce - 将数量部分添加到 nopcommerce2.2 中的 View /目录中的 _ProductBox.cshtml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8832158/
在使用 mvc 框架的 nopcommerce2.2 中,如何将数量部分添加到多个产品中的产品中,即 _ProductBox.cshtml?其实我到单品页面的时候,会拿到数量部分,但是不能把数量部分转
我是一名优秀的程序员,十分优秀!