我正在尝试使用页面项目 1 中的动态操作根据在页面项目 1 中选择的内容在页面项目 2 中返回特定值。
所以例如
当 detailspec(这是我的页面项目 1)为“N/A”时,specificationscore(这是我的页面项目 2)应显示“0”
或者当 detailspec(这是我的页面项目 1)为“Surpass”时,specificationscore(这是我的页面项目 2)应该显示“1”
以下是我认为应该使用的示例,但我不确定
eg.
declare
....
If detailspec(pageitem1) = N/A
then return value =0 (in :p5_SPECIFICATIONSCORE(pageitem2)
elseif
detailspec(pageitem1) = surpass
then return value =1 (in :p5_SPECIFICATIONSCORE(pageitem2)