我在Qlikview中使用REST连接器,我需要在连接到Web服务时将变量传递给CUSTOM CONNECT TO语句。
CUSTOM CONNECT TO "Provider=QVRestConnector.exe;url="http://test.example.com?auth=2334342assa13"
现在,我需要在RunTime提供它,而不是直接传递身份验证令牌。我试过以下但是没有用。
Let vToken="a3122423421f";
"Provider=QVRestConnector.exe;url="http://test.example.com?auth=$(vToken)"
答案 0 :(得分:0)
尝试替换
Let vToken="a3122423421f";
用
Let vToken='a3122423421f';
QlikView中的字符串定义为'character',表示字段名称。