Yii2 : Show image from Folder Common

前端 未结 3 1519
后悔当初
后悔当初 2020-12-21 16:57

I have a picture in folder common that i want to show in view, but it doesn\'t shown.

My code is :

request->bas         


        
3条回答
  •  礼貌的吻别
    2020-12-21 17:33

    We can do it easily by simple step of below In common/config/params-local.php

    Yii::setAlias('@imageurl', 'http://localhost/project_name/backend/web/');
    

    in above example i have my image under backend/web/images/product_images

    In frontend, i am getting like,

     
    

    it's simply working for me...

提交回复
热议问题