我試圖在xml中使用this code實現分頁,並着手使其工作。雖然它完美的工作,但有一個小問題,即當我點擊NEXT按鈕時,它會使用相同的初始記錄重新加載頁面。它不會將用戶帶到下一頁。在xml中傳遞參數
我遇到了this link其中海報有類似的問題,它似乎從答案參數需要通過。然而,該鏈接中的人使用MM_XSLTransform,而我不是。因此,當我嘗試實現這個代碼的index.php:
$xsl->addParameter("Page", $_GET["Page"]);
$xsl->addParameter("PageSize", $_GET["PageSize"]);
它拋出一個錯誤:
Fatal error: Call to undefined method XSLTProcessor::addParameter()
修訂
PHP代碼:
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
$xmldoc = new DOMDocument();
if(!file_exists('test.xml')){
echo "Sorry this file does not exists!";
exit();
} else {
$xmldoc->load('test.xml', LIBXML_NOBLANKS);
// Load up the XSL file
$xslDoc = new DomDocument;
$xslDoc->load("test.xsl");
$xsl = new XSLTProcessor;
$xsl->importStyleSheet($xslDoc);
$xsl->setParameter(null, 'Page', $_GET['Page']);
$xsl->setParameter(null, 'PageSize', $_GET['PageSize']);
// apply the transformation
echo $xsl->transformToXml($xmldoc);
}
?>
XSL :
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" />
<!-- XML Parameters -->
<xsl:param name="Page" select="0" />
<xsl:param name="PageSize" select="5" />
<xsl:template match="/">
<xsl:variable name="mycount" select="count(root/verse)"/>
<xsl:variable name="selectedRowCount" select="floor((number($mycount)-1) div $PageSize)+1"/>
<div>
<div>
<xsl:value-of select="root/title"/>
</div>
<div>
<p><xsl:value-of select="root/introduction"/></p>
</div>
<div>
<xsl:for-each select="root/verse">
<xsl:if test="position() >= ($Page * $PageSize) + 1">
<xsl:if test="position() <= $PageSize + ($PageSize * $Page)">
<div><xsl:value-of select="p"/></div> <br />
<div><xsl:value-of select="trla"/></div> <br />
<div><xsl:value-of select="trli"/></div> <br />
</xsl:if>
</xsl:if>
</xsl:for-each>
<!-- Prev link for pagination -->
<xsl:choose>
<xsl:when test="number($Page)-1 >= 0"> 
<A>
<xsl:attribute name="href">index.php?page=<xsl:value-of select="number($Page)-1"/>&pagesize=<xsl:value-of select="$PageSize"/></xsl:attribute>
<<Prev
</A>
</xsl:when>
<xsl:otherwise>
<!-- display something else -->
</xsl:otherwise>
</xsl:choose>
<xsl:if test="$selectedRowCount > 1">
 <b class="blacktext"><xsl:value-of select="number($Page)+1"/> of <xsl:value-of select="number($selectedRowCount)"/></b> 
</xsl:if>
<!-- Next link for pagination -->
<xsl:choose>
<xsl:when test="number($Page)+1 < number($selectedRowCount)"> 
<A>
<xsl:attribute name="href">index.php?page=<xsl:value-of select="number($Page)+1"/>&pagesize=<xsl:value-of select="$PageSize"/></xsl:attribute>
Next>>
</A>
</xsl:when>
<xsl:otherwise>
<!-- display something else -->
</xsl:otherwise>
</xsl:choose>
</div>
</div>
</xsl:template>
</xsl:stylesheet>
您確實需要將語言添加到標籤以及您正在使用的xslt處理器。他們有分歧,重要的是要知道哪個是哪個。 – Oded 2010-07-30 20:54:49
感謝您的指針。我正在使用內置的php xslt處理器。 – input 2010-07-30 21:12:39