1.搭建一個代理服務器
config/index.js 裏面找到proxyTable :{}
添加php
proxyTable: { "/api": { target: 'http://192.168.13.109/public/index.php/api/',//請求地址 changeOrigin: true, pathRewrite: { '^/api': '/' //至關於一個代替的表示 自定義 } } },
const API = "/api/admin/login"; stream.fetch( { method: "POST", url: API, type: "json", headers: { "Content-Type": "application/x-www-form-urlencoded" }, mode:"cors", body:'admin_name=1&admin_password=2' }, function(ret) { console.log(ret); if (!ret.ok) { modal.toast({ message: "Network Error!", duration: 3 }); } else { modal.toast({ message: "請求成功!" + body, duration: 3 }); } } );