在 PopCommerce 的 Detail.xml 中有一个参数 productId 被传递到屏幕。如何将该参数传递给 service-call ?
我在服务调用中尝试了下面的代码,但这不起作用
<field-map field-name="productId" from="productId"/>
画面中的参数是
<parameter name="productId" required="true"/>
我定义的服务是
<transition name="createProductReview">
<service-call name="create#ProductReview" web-send-json-response="true">
<field-map field-name="productStoreId" value="POPC_DEFAULT"/>
<field-map field-name="productId" from="how do I use the productId parameter here ?"/>
<field-map field-name="userId" from="ec.user.userAccount.userId"/>
<field-map field-name="statusId" value="PrvwPending"/>
</service-call>
<default-response type="none"/>
</transition>