QQ扫一扫联系
MSCore | V3.7.0 ( With LARAVEL5 ) |
操作系统 | Darwin |
PHP版本 | V7.0.33 |
ModStartCMS V6.0.0
在文章显示模版里添加如下代码并启用评论功能,测试评论功能报错,见截图
@include('module::MemberComment.View.pc.public.comment',['biz'=>'article','bizId'=>'id'])
报错日志看报什么错误
@include('module::MemberComment.View.pc.public.comment',['biz'=>'article','bizId'=>1])
其中 bizId 为文章的唯一ID,需要是整数。
biz=article, bizId=1 表示文章ID=1的评论
biz=article, bizId=2 表示文章ID=2的评论
在模版里怎么写呢?
我写成:
@include('module::MemberComment.View.pc.public.comment',['biz'=>'article','bizId'=>'{{$record['id']}}'])
刷新页面直接报错了,这里的id怎么写?
@include('module::MemberComment.View.pc.public.comment',['biz'=>'article','bizId'=>$record['id']])