Blogger Information
Blog 50
fans 0
comment 0
visits 31430
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
首页重点学习
手机用户1580651468
Original
1092 people have browsed it

首页学习

一、数据表的建立

二、首页的建立

一)axios代码段

  1. import axios from "axios";
  2. const inst =axios.create({
  3. baseURL: "http://www.tp6.com/index.php/Api",
  4. timeout: 5000
  5. }) ;
  6. inst({
  7. method: "GET",
  8. url:'/index',
  9. data:{ }
  10. }).then((res)=>{
  11. console.log(res);
  12. }).catch((err)=>{
  13. console.log(err);
  14. })

二)跨域的问题

  1. <?php
  2. namespace app\api\controller;
  3. use app\BaseController;
  4. use think\facade\Db;
  5. class Index
  6. {public function index()
  7. {跨域问题:php需要2步解决。 在代码处,增加header函数,在中间件增加跨域类
  8. 自己的项目,vue访问php代码,会出现跨域安全问题
  9. header("Access-Control-Allow-Origin:*");
  10. php接口:
  11. 把数据 读取出来,给到前端vue
  12. 接口有4步需要注意:
  13. 1、接口获取参数:
  14. 2、判断参数的正确性。
  15. 3、获取数据,整理数据
  16. 4、返回数据给接口(必须用json数据格式)
  17. 第三步: $user = Db::table('bew_admin_user')->select()->toArray();
  18. 第四步:用函数把数组转为json格式:json是字符串,可以用echo输出
  19. echo json_encode($user);
  20. }
  21. }

三)新建请求文件

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments