我的 CakePHP 项目中有几个 js 文件需要 ajax 调用的路径。我在服务器上生成路径并希望以通用方式将它们传递给 javascript。我不想将它们作为参数添加到函数中,因为它们是静态的。现在我这样做:
<?php
$categories = Router::url(array('controller' => 'categories', 'action' => 'getChildCategories'));
$brands = Router::url(array('controller' => 'brands', 'action' => 'autoComplete'));
// first add the variables
echo $this->Html->scriptBlock(
'var CATEGORIE_GETSUBCATEGORY = "' . $categories . '";
var BRAND_AUTOCOMPLETE = "' . $brands . '";',
array('inline' => false)
);
// then include the file that uses them
echo $this->Html->script('add');
?>
有没有更好的方法来做到这一点而不将它们作为参数传递?