0

このリクエストをページに送信すると:

http://www.server.com/show.xml?color=red&number=two

このようなことはできますか?:

I like the color <xsl:url-param name="color" /> and the number <xsl:url-param name="number" />.

質問の説明が必要な場合は、教えてください

回答ありがとうございます。

クレラド

4

1 に答える 1

1

いいえ; 一般に、XSL エンジンは Web サーバーに関連付けられていません。

ただし、ほとんどの XSL エンジンでは、スタイルシートとドキュメントとともにいくつかのパラメーターを渡すことができるため、Web 対応システムから呼び出す場合にできることは、GET パラメーターを XSL エンジンに直接マップすることです。

たとえば、PHP を使用している場合は、次のようにすることができます。

<?php

$params = array(
    'color' => $_GET['color'],
    'number' => $_GET['number']
);

$xsl = new DOMDocument;
$xsl->load('mystylesheet.xsl');

$xml = new DOMDocument;
$xml->load('mydocument.xml');

$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules

foreach ($params as $key => $val)
    $proc->setParameter('', $key, $val);

echo $proc->transformToXML($xml);

通過したものはすべて消毒する必要があります。次に、次のように簡単に実行できます。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet 
  version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <!-- Remember to pick-up the parameters from the engine -->
  <xsl:param name="color" />
  <xsl:param name="number" />
  <xsl:template match="*">
    I like the color <xsl:value-of select="$color" /> 
    and the number <xsl:value-of select="$number" />.
  </xsl:template>
</xsl:stylesheet>
于 2008-11-20T22:53:11.937 に答える