如何在opencart中添加新的图像字段

时间:2015-10-14 07:01:29

标签: opencart2.x

大家好我想在退货产品页面的opencart2中添加新的图片字段

如何在opencart中添加image字段

到目前为止我做了:

view : return_form.tpl

<div class="form-group">
            <label class="col-sm-2 control-label" for="input-comment1"><?php echo $entry_image; ?></label>
            <div class="col-sm-10">
             <input type="file" name="error_img">
            </div>
          </div>

在函数return.php

中的控制器add
if (isset($this->request->post['error_img'])) {
            $data['error_img'] = $this->request->post['error_img'];
        } else {
            $data['error_img'] = false;
        }

但是当我尝试打印$this->request->post['error_img']的值时,它返回空白

我缺少什么

1 个答案:

答案 0 :(得分:0)

:)

您需要使用<xsl:param name="find_size"> <xsl:text>(_.*)</xsl:text> </xsl:param> <xsl:variable name="filename_of_start"><xsl:value-of select="replace($filename_of_file, '$find_size', '')"/></xsl:variable> <artwork_size><xsl:value-of select="$filename_of_start"/></artwork_size> 代替$this->request->files['error_img']
在Opencart中你可以说

$this->request->post['error_img']

还有更多。请将$_POST == $this->request->post; $_GET == $this->request->get; $_FILES == $this->request->files; 添加到您的表单中。