Vue project, how to call the php file in a component?

  1. this is a directory picture

clipboard.png

clipboard.png

clipboard.png

Mar.05,2021

what is your server


if this is the provider, you can use the proxy. If you use vue-cli, set the proxy property in config/index.js

module.exports = {
  build: {
    .
    .
    .
  },
  dev: {
    .
    .
    .
    proxyTable: {
      '/api': {
        target: 'php',
        secure: false,
        changeOrigin: true,
        pathRewrite: {'^/api': ''}
      }
    }
  }
}
this.$http.get('/api/)
Menu