vue 音樂App QQ音樂搜索列表最新介面跨域設置

来源:https://www.cnblogs.com/Byme/archive/2018/09/22/9691077.html
-Advertisement-
Play Games

在 webpack.dev.config.js中 在請求金封裝的介面中 ...


在 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 ? { warnings: false, errors: true } : false,
        publicPath: config.dev.assetsPublicPath,
        proxy: config.dev.proxyTable,
        quiet: true, // necessary for FriendlyErrorsPlugin
        watchOptions: {
            poll: config.dev.poll,
        }
    },
    plugins: [
        new webpack.DefinePlugin({
            'process.env': require('../config/dev.env')
        }),
        new webpack.HotModuleReplacementPlugin(),
        new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
        new webpack.NoEmitOnErrorsPlugin(),
        // https://github.com/ampedandwired/html-webpack-plugin
        new HtmlWebpackPlugin({
            filename: 'index.html',
            template: 'index.html',
            inject: true
        }),
        // copy custom static assets
        new CopyWebpackPlugin([{
            from: path.resolve(__dirname, '../static'),
            to: config.dev.assetsSubDirectory,
            ignore: ['.*']
        }])
    ]
})

module.exports = new Promise((resolve, reject) => {
    portfinder.basePort = process.env.PORT || config.dev.port
    portfinder.getPort((err, port) => {
        if (err) {
            reject(err)
        } else {
            // publish the new Port, necessary for e2e tests
            process.env.PORT = port
                // add port to devServer config
            devWebpackConfig.devServer.port = port

            // Add FriendlyErrorsPlugin
            devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
                compilationSuccessInfo: {
                    messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
                },
                onErrors: config.dev.notifyOnErrors ? utils.createNotifierCallback() : undefined
            }))

            resolve(devWebpackConfig)
        }
    })
})

 

在請求金封裝的介面中

/*
*搜索列表
*/
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 ? 1 : 0,
    // t:0,
    // flag:1,
    // ie:utf-8,
    // sem:1,
    // aggr:0,
    // perpage:20,
    // n:20,
    // p:page,
    // n: perpage,
    // remoteplace:txt.mqq.all,
    // _:1537612841753
    //-----------------------------
    // w: query,
    // p: page,
    // perpage,
    // n: perpage,
    // catZhida: zhida ? 1 : 0,
    // zhidaqu: 1,
    // t: 0,
    // flag: 1,
    // ie: 'utf-8',
    // sem: 1,
    // aggr: 0,
    // remoteplace: 'txt.mqq.all',
    // uin: 0,
    // needNewCode: 1,
    // platform: 'h5',
    // g_tk:5381,
    // _:1537612841753
    //---------------------------------測試官方數據
    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 ? 1 : 0,
    t:0,
    flag:1,
    ie:'utf-8',
    sem:1,
    aggr:0,
    perpage:perpage,
    n:20,
    p:page,
    remoteplace:'txt.mqq.all',
    _:1537612841753
  })

  return axios.get(url, {
    params: data
  }).then((res) => {
    //成功後返回
    return Promise.resolve(res.data)
  })
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 本系列博客主要介紹MySQL資料庫的binlog日誌的相關內容,這個系列的主題包括: MySQLbinlog日誌01binlog日誌基本操作 MySQLbinlog日誌02binlog日誌用於數據恢復 MySQLbinlog日誌03binlog日誌位元組碼解析 MySQLbinlog日誌04binlo ...
  • 1.前言 總是聊併發的話題,聊到大家都免疫了,所以這次串講下個話題——資料庫(歡迎糾正補充) 看完問自己一個問題來自我檢測: NoSQL我到底該怎麼選? 1.1.分類 主要有這麼三大類:[再老的資料庫就不說了] 1.傳統資料庫(SQL): 關係資料庫:SQLite、MySQL、SQLServer.. ...
  • USE MASTER GO DECLARE @dbname SYSNAME SET @dbname = 'databasename' --這個是要刪除的資料庫庫名 DECLARE @s NVARCHAR(1000) DECLARE tb CURSOR LOCAL FOR SELECT s = 'ki ...
  • 很多人在安裝orcl資料庫時,出現很多報錯,我也不例外,因上次資料庫出現問題,無法修複,只能從新安裝,無奈的是,安裝時報啟動服務出現錯誤,找不到OracleMTSRecoveryService錯MMP,心想又是咋咯回事,第一反應肯定就是沒卸載乾凈。下麵時處理辦法:不是所有報錯通用辦法。 打開註冊表看 ...
  • 在網頁中,實現動畫無外乎兩種方式。1. CSS3 方式,也就是利用瀏覽器對CSS3 的原生支持實現動畫;2. 腳本方式,通過間隔一段時間用JavaScript 來修改頁面元素樣式來實現動畫。接下來我們就分別介紹這兩種方式的原理,讓大家先對這兩種方式有一個直觀認識,瞭解各自的優缺點。 CSS3 的方式 ...
  • 在一些網站上可以經常看到有一些圖片進行持續不斷的滾動,這個效果可以通過css的動畫效果來實現。具體效果如下 主要原理是通過動畫向左移動。 首先給出兩組一樣的圖片(同一行上),讓整體圖片向左移動一組圖片的長度, 這樣在動畫結束時會迅速還原到原來位置,而此時正好與第二組圖片交替,看起來就像是一組圖片在不 ...
  • 此篇接上一篇: 移動端H5混合開發,Touch觸控,拖拽,長按, 滑屏 實現方案 https://www.cnblogs.com/buoge/p/9346699.html app 場布設置已經上線了,用戶可以通過手機端嵌入的h5網頁進行場布設置,原來只能在pc端瀏覽器,還得帶上個筆記本電腦很是不方便 ...
  • 我的圖片上傳使用form表單,html: css js 後臺把數據傳給資料庫,成功後跳轉頁面,在html頁面中用這個<img src="${sessionScope.imgurl}"/> ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...