1

我的 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'); 
?>

有没有更好的方法来做到这一点而不将它们作为参数传递?

4

1 回答 1

0

你目前的做法完全没有问题。任何性能提升都可以忽略不计,我认为没有明确的更优雅的方式来做到这一点。

于 2013-03-01T22:06:03.967 回答