本文詳細(xì)分析了dedecms文章評(píng)論功能用法。分享給大家供大家參考。具體分析如下:
織夢(mèng)是個(gè)很好的內(nèi)容管理系統(tǒng),其模型、頻道、緩存功能都是十分的強(qiáng)大的,其文章評(píng)論也是很有特色的,因?yàn)榭棄?mèng)的文章評(píng)論是使用了ajax,這樣即使是用的生成靜態(tài),也可以調(diào)取出最新的文章評(píng)論.
有的時(shí)候我們想單獨(dú)的對(duì)某些欄目加評(píng)論,有人說(shuō)使用自定義表單,其實(shí)是不好的,因?yàn)橛米远x表單豈不是一篇文章就建一個(gè)自定義表單了,所以在其原文章評(píng)論的基礎(chǔ)上修改就可以,查看一下其評(píng)論提交頁(yè),在文章頁(yè)是用的ajax提交,我們可以進(jìn)去詳細(xì)評(píng)論頁(yè)就可以看到,其action指向的文件是plus/feedback.php這個(gè)文件.
復(fù)制代碼代碼如下:<input type=hidden name=action value=send />
<input type=hidden name=comtype value=comments>
<input type=hidden name=username value=youke>
<input type=hidden name=oldurl value=>
<input type=hidden name=aid value=179 />
<input type=text name=msg value= />
<input type=hidden name=isconfirm value=yes />
他需要幾個(gè)隱含值,其中action為操縱類型,send代表發(fā)布評(píng)論,comtype為comments時(shí)表示是評(píng)論,這個(gè)username 和 oldurl為我自己定義的變量,這樣的目的是不讓其填姓名,只填評(píng)論內(nèi)容,oldurl為評(píng)論發(fā)布成功后跳轉(zhuǎn)的頁(yè)面,然后是驗(yàn)證碼.
驗(yàn)證碼:
復(fù)制代碼代碼如下:<input name=validate type=text id=validate size=10 style=height:18px;width:60px;margin-right:6px;text-transform:uppercase; class=nb />
<img src='http://local.de.com/include/vdimgck.php' width='60' height='24' style=cursor:pointer onclick=this.src=this.src+'?' title=點(diǎn)擊我更換圖片 alt=點(diǎn)擊我更換圖片 />
這樣只要是你的action指向正確就能在任何頁(yè)面進(jìn)行提交了,需要說(shuō)一點(diǎn)就是這個(gè)aid就是文章的id,在文章頁(yè)可以使用{dede:field.id/}獲得.
然后是獲取評(píng)論,我們還是用他的ajax來(lái)獲取,需要注意的就是他要包含一個(gè)js,織夢(mèng)的說(shuō)明文檔中也說(shuō)了,就是{dede:global.cfg_cmsurl/}/include/dedeajax2.js這個(gè)js,然后在文章頁(yè),article_article.htm頁(yè)中加上<dd id='commetcontent'></dd>這個(gè)是放獲取的評(píng)論內(nèi)容,然后:
復(fù)制代碼代碼如下:<script language='javascript'>
function loadcommets(page)
{
var taget_obj = document.getelementbyidx_x('commetcontent');
var waithtml = <div style='line-height:50px'><img src='{dede:global.cfg_cmsurl/}/images/loadinglit.gif' />評(píng)論加載中...</div>;
var myajax = new dedeajax(taget_obj, true, true, '', 'x', waithtml);
myajax.sendget2({dede:global.cfg_phpurl /}/feedback_ajax.php?dopost=getlist&aid={dede:field.id/}&page=+page);
dedexhttp = null;
}
loadcommets(1);
</script>
這個(gè)就是獲取評(píng)論的js,加在包含文件的后面就可以,然后在plus/feedback_ajax.php中的getlist()函數(shù)中定義評(píng)論列表的樣式,調(diào)取的內(nèi)容就可以了,需要注意的是其helper('smiley');等的一些小助手功能.
希望本文所述對(duì)大家的dedecms建站有所幫助。
更多信息請(qǐng)查看IT技術(shù)專欄