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/)
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b389ee-2c112.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b389ee-2c112.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?