vue 音乐App QQ音乐搜索列表最新接口跨域设置方法
(编辑:jimmy 日期: 2024/11/6 浏览:3 次 )
在 webpack.dev.config.js中
'use strict' const utils = require('./utils') const webpack = require('webpack') const config = require('../config') const merge = require('webpack-merge') const path = require('path') const baseWebpackConfig = require('./webpack.base.conf') const CopyWebpackPlugin = require('copy-webpack-plugin') const HtmlWebpackPlugin = require('html-webpack-plugin') const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin') const portfinder = require('portfinder') //-------------------axios 结合 node.js 代理后端请求 start const express = require('express') const axios = require('axios') const app = express() var apiRoutes = express.Router() app.use('/api', apiRoutes) //-------------------axios 结合 node.js 代理后端请求 end const HOST = process.env.HOST const PORT = process.env.PORT && Number(process.env.PORT) const devWebpackConfig = merge(baseWebpackConfig, { module: { rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true }) }, // cheap-module-eval-source-map is faster for development devtool: config.dev.devtool, // these devServer options should be customized in /config/index.js devServer: { clientLogLevel: 'warning', historyApiFallback: { rewrites: [ { from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') }, ], }, //----------------axios 结合 node.js 代理后端请求 before(app) { // 推荐热门歌单 app.get('/api/getDiscList', function(req, res) { var url = 'https://c.y.qq.com/splcloud/fcgi-bin/fcg_get_diss_by_tag.fcg' axios.get(url, { headers: { referer: 'https://c.y.qq.com/', host: 'c.y.qq.com' }, params: req.query }).then((response) => { res.json(response.data) }).catch((e) => { console.log(e) }) }), // 歌词 app.get('/api/getLyric', function(req, res) { var url = 'https://c.y.qq.com/lyric/fcgi-bin/fcg_query_lyric_new.fcg' axios.get(url, { headers: { referer: 'https://c.y.qq.com/', host: 'c.y.qq.com' }, params: req.query }) .then((response) => { // jsonp 数据转为 json 数据 var result = response.data if (typeof result === 'string') { var reg = /^\w+\(({[^()]+})\)$/ var matches = result.match(reg) if (matches) { result = JSON.parse(matches[1]) } } res.json(result) // res.json(response.data) }) .catch((error) => { console.log(error) }) }), //搜索列表接口 // https://c.y.qq.com/soso/fcgi-bin/search_for_qq_cp app.get('/api/search', function(req, res) { var url = 'https://c.y.qq.com/soso/fcgi-bin/search_for_qq_cp' axios.get(url, { headers: { referer: 'https://c.y.qq.com/', host: 'c.y.qq.com' }, params: req.query }).then((response) => { res.json(response.data) }).catch((e) => { console.log(e) }) }) }, //----------------axios 结合 node.js 代理后端请求 hot: true, contentBase: false, // since we use CopyWebpackPlugin. compress: true, host: HOST || config.dev.host, port: PORT || config.dev.port, open: config.dev.autoOpenBrowser, overlay: config.dev.errorOverlay "htmlcode">/* *搜索列表 */ export function getSearch(query,page,zhida,perpage) { const url = '/api/search' //在webpack.dev.config启用了代理跨域 // const url ='https://c.y.qq.com/soso/fcgi-bin/search_for_qq_cp' console.log(url) const data = Object.assign({}, commonParams, { // g_tk:5381, // uin:0, // format:json, // inCharset:utf-8, // outCharset:utf-8, // notice:0, // platform:h5, // needNewCode:1, // w:query, // zhidaqu:1, // catZhida: zhida "color: #ff0000">总结
以上所述是小编给大家介绍的vue 音乐App QQ音乐搜索列表最新接口跨域设置方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
下一篇:Vue页面跳转动画效果的实现方法