注册
找回密码
账号 记住
1877
4
3738
328
29
用SQL标签做产品放大镜效果;select top 4 ID,InfoID,PhotoUrl,BigPhoto,Intro from [KS_ProImages] where InfoID=[KS:Param(0)]
{SQL_产品放大镜图片({KS:Current:ItemID})}
前台打开产品页就死,基本是卡死,
直接写当前产品ID号这样可以 {SQL_产品放大镜图片(123)}
47268
145
405
直接改成
select top 4 ID,InfoID,PhotoUrl,BigPhoto,Intro from [KS_ProImages] where InfoID={KS:Current:ItemID}
调用时不需要调用参数。
是这个标签:[KS:Current:InfoID]
select top 4 ID,InfoID,PhotoUrl,BigPhoto,Intro from [KS_ProImages] where InfoID={KS:Current:InfoID}