Yii + Vue 前后端交互(跨域)

Posted Iven_Han

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Yii + Vue 前后端交互(跨域)相关的知识,希望对你有一定的参考价值。

如有疑问,请在微博 韩峰26 留言!

前端配置什么指明发送到具体的URL

  需要使用vue-resource:

  下载:    

    cd 项目根目录
    npm install vue-resource --save-dev

  项目结构:

    

  配置:

    1.在main.js引入

      import VueResource from \'vue-resource\'

      Vue.use(VueResource)

    

    2.在发送请求.vue文件调用

                    test (){                          
                          this.$http.get(\'http://localhost:8080/home/site/test\').then(function (response) {
                            // 响应成功回调
                            console.log(response);
                            console.log(\'ss\')
                          }, function (response) {
                            // 响应错误回调
                            console.log(response)
                            console.log(\'failed\')
                          });
                        }

        

    3.在该.vue文件中添加测试按钮button,调用test方法,在页面点击测试

      <button @click=\'test\'>点击</button>

后端配置(yii):

  项目配置:

  

  1.需要指明哪个URL可以访问后端的某个controller, 如果所有URL都能访问, 使用*代替

      在该controller中添加     

            public function behaviors()
                {
                    return ArrayHelper::merge([
                        [
                            \'class\' => Cors::className(),
                            \'cors\' => [
                                //\'Origin\' => [\'http://localhost:1024\'],
                                \'Origin\' => [\'*\'],
                                \'Access-Control-Request-Method\' => [\'POST\'],
                                \'Access-Control-Allow-Credentials\' => true,
                            ],
                        ],
                    ], parent::behaviors());
                }

  2.在controller中添加被调用的方法:

                public function actionTest(){
                    return \'test\';
                }        

启动服务器就可以在vue页面点击button访问yii了。

 

注: 很多情况不能运行是访问后端controller下的action方法路径写错,先使用get方法测试,路径一定要写对!不然报500错误

若报错No \'Access-Control-Allow-Origin\' header is present on....,需要在后端该controller里申明

\'Origin\' => [\'http://localhost:1024\'] (或者\'Origin\' => [\'*\'])  

            public function behaviors()
            {
                return ArrayHelper::merge([
                    [
                        \'class\' => Cors::className(),
                        \'cors\' => [
                            \'Origin\' => [\'*\'],
                            \'Access-Control-Request-Method\' => [\'POST\'],
                            \'Access-Control-Allow-Credentials\' => true,
                        ],
                    ],
                ], parent::behaviors());
            }

 

扩展:

  yii 初始化时如何配置默认访问某个文件?

 

以上是关于Yii + Vue 前后端交互(跨域)的主要内容,如果未能解决你的问题,请参考以下文章

前后端分离之使用axios进行前后端交互实现评论显示——django+mysql+vue+element

一 . Vue+Django 前后端数据交互知识点

前后端分离交互

vue 前后端数据交互问题解决

SpringBoot与Vue交互解决跨域问题亲测已解决

SpringBoot与Vue交互解决跨域问题亲测已解决