Yii2 как добавить javascript id, type ?
Необходимо добавить javascript-у id="some-template" и type="text/x-handlebars-template"
НА СТРАНИЦУ КОДОМ
Пример кода:
<script id="template" type="text/x-handlebars-template">
Имя: {{name}}
</script>
1-й вариант
//...
$script = <<< JS
// code
JS;
$this->registerJs($script, yii\web\View::POS_END);
-- не годится (У registerJs нет возможности добавить id, type)
2-й вариант
//...
class TmpAppAsset extends AssetBundle{
public $js = [
'js/file.js',
];
public $jsOptions = [
'position' => \yii\web\View::POS_HEAD,
'id' => 'template'
'type' => 'text/x-handlebars-template',
];
}
-- не годится (Мне javascript нельзя загружать из файла!)