0
我想使用Fluid模板創建Ajax調用,並且想要使用Fluid URI action ViewHelper。問題是,其中一個參數是從Javascript變量中動態獲得的。我該如何實現,ViewHelper是由Fluid渲染的,並且Javascript變量的內容是在運行時插入的?如何在流體URI中使用Javascript變量作爲參數ViewHelper
這裏是我的代碼(簡化):
function test(field) {
xmlhttp.open("GET", '<f:uri.action action="ajax" arguments="{filterfield:' + field + '}" />', true);
}
目前流體渲染輸出是:
function test(field) {
xmlhttp.open("GET",'mod.php?...&tx_test_test_testview%5Bfilterfield%5D=%20%2B%20field%20%2B%20...', true);
}
但我想實現:
function test(field) {
xmlhttp.open("GET",'mod.php?...&tx_test_test_testview%5Bfilterfield%5D=' + field + '...', true);
}
我把...
輸出不相關的地方。
很簡單的解決方法!它的工作原理,謝謝! – andreas