我已在管理产品图片标签中添加了图片标题字段,使用以下位置的以下代码
管理员/主题/默认/模板/控制器/产品/ images.tpl
<td id="td_image_id" class="pointer dragHandle center positionImage">
<input type="text" name="image_caption" value=image_caption >
</td>
我在ps_image表中添加了image_caption字段
imageLine({$image->id}, "{$image->getExistingImgPath()}", {$image->position}, "{if $image->cover}enabled{else}forbbiden{/if}", assoc," {$image->image_caption}");
使用从表中检索的上述数据。现在我已经更新了image_caption field.how以更新该字段?
答案 0 :(得分:1)
imageLine JS函数中只有5个参数,见下文
function imageLine(id, path, position, cover, shops)
您需要通过以下方式编辑此功能:
function imageLine(id, path, position, cover, shops, image_caption)
{
line = $("#lineType").html();
line = line.replace(/image_id/g, id);
line = line.replace(/image_caption/g, image_caption);
....
}
我希望这会对你有帮助。