0

我试图在我的 .pcf 文件中为 Exitpoint 创建多个签名,它显示错误。
是否可以接受,如果没有明确提及,那么默认签名是什么

4

1 回答 1

1

是的,您可以在 LocationEntryPoint 选项卡中添加多个签名
示例代码

<?xml version="1.0"?>
<PCF
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="../../../../../../pcf.xsd">
    <Forward
        canVisit="true"
        id="YourPageForward">
        <LocationEntryPoint
            signature="YourPageForward(queryParamId1:String)"/>
        <LocationEntryPoint
            signature="YourPageForward(queryParamId1:String, queryParamId2:String)"/>
        <Variable
            name="queryParamId1"
            type="String"/>
        <Variable
            name="queryParamId2"
            type="String"/>
        <ForwardCondition
            action="my.web.YourPageForwardHandler.Instance.doProcessOne(queryParamId1)"/>
        <ForwardCondition
            action="my.web.YourPageForwardHandler.Instance.doProcessTow(queryParamId1, queryParamId2)"/>   
    </Forward>
</PCF>
于 2020-01-24T16:11:18.363 回答