ReferenceError: $ is not defined yii2

前端 未结 2 1512
无人及你
无人及你 2021-02-01 15:22

Adding a javascript inside my view results in the ReferenceError: $ is not defined. I assume that the problem is due to Yii2 injects scripts last on my page. How to

相关标签:
2条回答
  • 2021-02-01 15:44

    Yii2 injects scripts (jquery and the like) last on your page. This is intended and desired. But it means that the jQuery will load AFTER your script, so when your script runs, jQuery does not yet exist.

    The easiest way for quick testing is to move yii-scripts (jquery and the like) to the head of the page. Modify assets\AppAsset.php and add this:

    public $jsOptions = array(
        'position' => \yii\web\View::POS_HEAD
    );
    

    Done!


    But in production you usually want the scripts to load last, and instead you let Yii2 handle your javascript:

    $this->registerJs(
        '$("document").ready(function(){ alert("hi"); });'
    );
    

    Now Yii will handle this js and place it after anything important (like jQuery).

    You'll however soon notice that IDE's are usually bad at handling this kind of language nesting (JavaScript inside PHP) so the syntax highlighting is likely to break. One way to solve it is to register your script in a separate file:

    $this->registerJsFile( 'myScript.js' );
    

    If you want even more control about which order to load your scripts, you can add dependencies as your second argument, and additional options as the third:

    $this->registerJsFile( 
        'myScript.js', 
        ['\backend\assets\AppAsset'],  
        ['position' => '\yii\web\View::POS_END']
    );
    

    If you for some reason absolutely want the script to be rendered inline you can do:

    $this->registerJs( $this->renderPartial('myScript.js') );
    

    The recommended way to add your scripts is to use AssetBundles. Look in assets/AppAssets.php and add your js-file to the $js-array.

    0 讨论(0)
  • 2021-02-01 15:46

    Whenever you need some assets for a library specific use, register them in the view file like this:

    use yii\web\JqueryAsset;
    JqueryAsset::register(this);
    

    Alternatively, if you add yii\web\JqueryAsset to your $depends attribute inside AppAsset, the asset will be loaded automatically for all your views, given that you registered it in the main layout (by default in Yii2 boilerplate).

    I wanted to use the yii2-date-range from kartik-v in my project, and did this:

    use kartik\daterange\DateRangePicker;
    use kartik\daterange\MomentAsset;
    use yii\web\JqueryAsset;
    
    JqueryAsset::register(this);
    MomentAsset::register(this);
    ...
    echo DateRangePicker::widget([ 
        'model' => $model, 
        ...
    ]);
    

    Since I switched to twig templating, I ended up with the following code in my view:

    {{ use('kartik/daterange/DateRangePicker') }}
    {{ use('kartik/daterange/MomentAsset') }}
    {{ use('yii/web/JqueryAsset') }}
    {{ register_jquery_asset() }}
    {{ register_moment_asset() }}
    ...
    {{ date_range_picker_widget({ 
        'model': model, 
        ...
       }) }}
    
    0 讨论(0)
提交回复
热议问题