Как добавить jQuery на мою страницу в Yii 2.0?
В Yii 1.x вы можете просто использовать:
Yii::app()->clientScript->registerCoreScript('jquery');
Я уже пытался переопределить класс View со своим собственным и попытался зарегистрировать jQuery, но он не отображается на моей странице html:
namespace frontend\components;
/**
* This is the base view object, it extends the yii\web\View so you can add custom view stuff here.
*/
class BaseView extends \yii\web\View {
public function init()
{
parent::init();
\yii\web\JqueryAsset::register($this);
}
}