admin管理员组文章数量:1352158
I'm trying to define a JS variable which gets it's value from a smarty variable..
This is what I've done in my PHP controller:
public function hookDisplayBackOfficeHeader()
{
$this->context->controller->addJS($this->_path.'js/bo_setup.js', 'all');
}
I'm declaring the variable on a separate function:
private function _loadTestInfo()
{
$this->context->smarty->assign(array(
'test_username' => 'myuser',
));
}
and calling it from the getContent() function:
{
$output = '';
....
$this->output .= $this->display(__FILE__, '/views/templates/admin/back_office.tpl');
$this->_loadTestInfo();
$this->output .= $this->renderForm();
return $this->output;
}
my bo_setup.js function looks like this:
var test_username = "{$test_username}";
document.getElementById('username').value = test_username;
However, running the page gives the 'username' variable the value of "{$test_username}" instead of the "myuser" value.
any clues?
I'm trying to define a JS variable which gets it's value from a smarty variable..
This is what I've done in my PHP controller:
public function hookDisplayBackOfficeHeader()
{
$this->context->controller->addJS($this->_path.'js/bo_setup.js', 'all');
}
I'm declaring the variable on a separate function:
private function _loadTestInfo()
{
$this->context->smarty->assign(array(
'test_username' => 'myuser',
));
}
and calling it from the getContent() function:
{
$output = '';
....
$this->output .= $this->display(__FILE__, '/views/templates/admin/back_office.tpl');
$this->_loadTestInfo();
$this->output .= $this->renderForm();
return $this->output;
}
my bo_setup.js function looks like this:
var test_username = "{$test_username}";
document.getElementById('username').value = test_username;
However, running the page gives the 'username' variable the value of "{$test_username}" instead of the "myuser" value.
any clues?
Share Improve this question edited Dec 23, 2016 at 8:58 Matteo Enna 1,3011 gold badge15 silver badges36 bronze badges asked Apr 4, 2014 at 16:06 AppleEaterAppleEater 311 gold badge1 silver badge4 bronze badges 1-
It's been a while since I used smarty, but it looks like you aren't processing your
bo_setup.js
file with smarty anywhere. Unless prestashop (which I've admittedly never used) automatically smarti-fies through theaddJS
function, I don't see how Smarty could operate on that file. – Patrick M Commented Apr 4, 2014 at 19:21
2 Answers
Reset to default 4For accessing variables in JavaScript you can assign them in your controllers with:
Media::addJsDef(array('mymodule' => array('test_username' => 'Your name')));
$this->context->controller->addJS($this->_path.'myscript.js')
Then you can use them in your JavaScript or through console:
let var1 = mymodule.test_username;
It might be very late but the following should help you:
{addJsDef test_username=$test_username|escape:'html':'UTF-8'}
This is to be added in the smarty .tpl file and it will define the variable for you.
After this, it might be good to ensure the javascript is executed once the content is loaded, using document.onload = function ...
for instance.
本文标签: phpAssign JavaScript var from Smarty in Prestashop 16Stack Overflow
版权声明:本文标题:php - Assign JavaScript var from Smarty in Prestashop 1.6 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743910264a2560265.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论