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 the addJS function, I don't see how Smarty could operate on that file. – Patrick M Commented Apr 4, 2014 at 19:21
Add a ment  | 

2 Answers 2

Reset to default 4

For 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