是否可以在Yii2中的控制器操作中注册Javascript?
或多或少我认为:
class MyController extends yii\web\Controller {
public function actionView(){
//Is it possible to register Javascript here?
return $this->render('view');
}
}
答案 0 :(得分:5)
您的控制器可让您访问其视图,从而允许您呈现JS。
$this->getView()->registerJs("yourJsGoesHere");
http://www.yiiframework.com/doc-2.0/yii-base-controller.html#getView()-detail
http://www.yiiframework.com/doc-2.0/yii-web-view.html#registerJs()-detail