Modern web applications, additionally to static HTML pages that are rendered and sent to the browser, contain JavaScript that is used to modify the page in the browser by manipulating existing elements or loading new content via AJAX. This section describes methods provided by Yii for adding JavaScript and CSS to a website as well as dynamically adjusting these.
When working with the yii\web\View object you can dynamically register frontend scripts. There are two dedicated methods for this:
Inline scripts are useful for configuration, dynamically generated code and small snippets created by reusable frontend code contained in widgets. The registerJs() method for adding these can be used as follows:
$this->registerJs( "$('#myButton').on('click', function() { alert('Button clicked!'); });", View::POS_READY, 'my-button-handler' );
The first argument is the actual JS code we want to insert into the page. It will be wrapped into a <script>
tag. The second argument determines at which position the script should be inserted into the page. Possible values are:
<body>
.</body>
.ready
event. This will automatically register jQuery and wrap the code into the appropriate jQuery code. This is the default position.load
event. Same as the above, this will also register jQuery automatically.The last argument is a unique script ID that is used to identify the script code block and replace an existing one with the same ID instead of adding a new one. If you don't provide it, the JS code itself will be used as the ID. It is used to avoid registration of the same code muliple times.
The arguments for registerJsFile() are similar to those for registerCssFile(). In the following example, we register the main.js
file with the dependency on the yii\web\JqueryAsset. It means that the main.js
file will be added AFTER jquery.js
. Without such dependency specification, the relative order between main.js
and jquery.js
would be undefined and the code would not work.
An external script can be added like the following:
$this->registerJsFile( '@web/js/main.js', ['depends' => [\yii\web\JqueryAsset::className()]] );
This will add a tag for the /js/main.js
script located under the application base URL.
It is highly recommended to use asset bundles to register external JS files rather than registerJsFile() because these allow better flexibility and more granular dependency configuration. Also using asset bundles allows you to combine and compress multiple JS files, which is desirable for high traffic websites.
Similar to JavaScript, you can register CSS using registerCss() or registerCssFile(). The former registers a block of CSS code while the latter registers an external CSS file.
$this->registerCss("body { background: #f00; }");
The code above will result in adding the following to the <head>
section of the page:
<style> body { background: #f00; } </style>
If you want to specify additional properties of the style tag, pass an array of name-values to the second argument. The last argument is a unique ID that is used to identify the style block and make sure it is only added once in case the same style is registered from different places in the code.
A CSS file can be registered using the following:
$this->registerCssFile("@web/css/themes/black-and-white.css", [ 'depends' => [\yii\bootstrap\BootstrapAsset::className()], 'media' => 'print', ], 'css-print-theme');
The above code will add a link to the /css/themes/black-and-white.css
CSS file to the <head>
section of the page.
@web
in this example is an alias for the applications base URL.<link>
tag. The option depends
is specially handled. It specifies which asset bundles this CSS file depends on. In this case, the dependent asset bundle is BootstrapAsset. This means the CSS file will be added after the CSS files from BootstrapAsset.It is highly recommended to use asset bundles to register external CSS files rather than registerCssFile(). Using asset bundles allows you to combine and compress multiple CSS files, which is desirable for high traffic websites. It also provides more flexibility as all asset dependencies of your application are configured in one place.
As was mentioned earlier it's recommended to use asset bundles instead of registering CSS and JavaScript files directly. You can get details on how to define asset bundles in the "Assets" section. As for using already defined asset bundles, it's very straightforward:
\frontend\assets\AppAsset::register($this);
In the above code, in the context of a view file, the AppAsset
bundle is registered on the current view (represented by $this
). When registering asset bundles from within a widget, you would pass the $view of the widget instead ($this->view
).
In view files often the HTML code is not written out directly but generated by some PHP code dependent on the variables of the view. In order for the generated HTML to be manipulated with Javascript, the JS code has to contain dynamic parts too, for example the IDs of the jQuery selectors.
To insert PHP variables into JS code, their values have to be escaped properly. Especially when the JS code is inserted into HTML instead of residing in a dedicated JS file. Yii provides the htmlEncode() method of the Json helper for this purpose. Its usage will be shown in the following examples.
In this example we use an array to pass global configuration parameters from the PHP part of the application to the JS frontend code.
$options = [ 'appName' => Yii::$app->name, 'baseUrl' => Yii::$app->request->baseUrl, 'language' => Yii::$app->language, // ... ]; $this->registerJs( "var yiiOptions = ".\yii\helpers\Json::htmlEncode($options).";", View::POS_HEAD, 'yiiOptions' );
The above code will register a <script>
-tag containing the JavaScript variable definition, e.g.:
var yiiOptions = {"appName":"My Yii Application","baseUrl":"/basic/web","language":"en"};
In your JavaScript code you can now access these like yiiOptions.baseUrl
or yiiOptions.language
.
You may encounter a case where your JavaScript needs to print a message reacting to some event. In an application that works with multiple languages this string has to be translated to the current application language. One way to achieve this is to use the message translation feature provided by Yii and passing the result to the JavaScript code.
$message = \yii\helpers\Json::htmlEncode( \Yii::t('app', 'Button clicked!') ); $this->registerJs(<<<JS $('#myButton').on('click', function() { alert( $message ); });", JS );
The above example code uses PHP Heredoc syntax for better readability. This also enables better syntax highlighting in most IDEs so it is the preferred way of writing inline JavaScript, especially useful for code that is longer than a single line. The variable $message
is created in PHP and thanks to Json::htmlEncode it contains the string in valid JS syntax, which can be inserted into the JavaScript code to place the dynamic string in the function call to alert()
.
Note: When using Heredoc, be careful with variable naming in JS code as variables beginning with
$
may be interpreted as PHP variables which will be replaced by their content. The jQuery function in form of$(
or$.
is not interpreted as a PHP variable and can safely be used.
yii.js
script
Note: This section has not been written yet. It should contain explanation of the functionality provided by
yii.js
:
- Yii JavaScript Modules
- CSRF param handling
data-confirm
handlerdata-method
handler- script filtering
- redirect handling
© 2008–2017 by Yii Software LLC
Licensed under the three clause BSD license.
http://www.yiiframework.com/doc-2.0/guide-output-client-scripts.html