admin管理员组文章数量:1344241
I got a problem regarding how to assign a java script variable to a smarty variable. Here is the code snippet.
function getDateInfo(date, wantsClassName)
{
var as_number = Calendar.dateToInt(date); //This as_number is the variable which should be assigned to smarty variable
}
How can i acplish this.
any help will be appreciated..
Thanks n advance -- Fero
I got a problem regarding how to assign a java script variable to a smarty variable. Here is the code snippet.
function getDateInfo(date, wantsClassName)
{
var as_number = Calendar.dateToInt(date); //This as_number is the variable which should be assigned to smarty variable
}
How can i acplish this.
any help will be appreciated..
Thanks n advance -- Fero
Share Improve this question edited Aug 13, 2009 at 9:44 Aron Rotteveel 83.3k17 gold badges105 silver badges129 bronze badges asked Aug 13, 2009 at 9:40 FeroFero 13.3k46 gold badges118 silver badges159 bronze badges2 Answers
Reset to default 7You can't assign a client-side value to a smarty variable, as smarty is a templating language that runs on the server. Smarty assignments can only be done on the server-side, that is to say, from PHP. E.g.:
$smarty->assign('timestamp',time());
So what you can do is something like:
$smarty->assign('timestamp',time()); //in your PHP script
//in your JS
var currentTS = {$timestamp};
See http://www.smarty/manual/en/api.assign.php
For anything AJAX with PHP, I'd propose the xajax library:
http://www.xajax-project/
Using xajax, you register a PHP function to be exposed to your client side JS code. By magic, if you call registered functions in JS, xajax packs the request with parameters and passes it back to the server.
Moreover, you are able to push more than update from your PHP code to the browser. Something like 'Replace element X with ... and replace element Y with ...' in a single XHR reply.
xajax makes AJAX style code very clean.
本文标签: how to assign a javascript variable to a smarty variableStack Overflow
版权声明:本文标题:how to assign a javascript variable to a smarty variable - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743707779a2525408.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论