0
我在Qlikview中使用REST連接器,並且在連接到Web服務時需要將變量傳遞給CUSTOM CONNECT TO語句。在自定義連接中替換字符串到qlikview中的語句
CUSTOM CONNECT TO "Provider=QVRestConnector.exe;url="http://test.example.com?auth=2334342assa13"
現在,代替auth令牌直接通過,我需要在運行時提供它。我嘗試了下面,但它不工作。
Let vToken="a3122423421f";
"Provider=QVRestConnector.exe;url="http://test.example.com?auth=$(vToken)"
我不是可以肯定的是,但是如果你將變量嵌套在另一個層次上呢,讓vConnect ='Provider = QVRestConnector.exe; url =「http://test.examp le.com?auth=$(vToken)「';然後連接到$(vConnect)?我無法確定這只是我會嘗試的 –