Yii 2.0 で自分のページに jQuery を追加するにはどうすればよいですか?
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);
}
}