Jsonp QQ 음악 윤방도 데이터 캡처

2578 단어
// jsonp.js

import originJsonp from 'jsonp'

export default function jsonp(url, data, option) {
  //  '?'  ( '?' '&' )
  url += (indexOf('?') < 0 ? '?' : '&') + param(data)
  return new Promise((resolve, reject) => {
    originJsonp(url, option, (err, data) => {
      if (!err) {
        resolve(data)
      } else {
        reject(err)
      }
    })
  })
}

// data  '?' 
export function param(data) {
  let url = ''
  //  key,value , 
  for (var k in data) {
    let value = data[k] !== undefined ? data[k] : ''
    url += '&' + k + '=' + encodeURIComponent(value)
  }
  return url ? url.substring(1) : ''
}

// config.js   
export const commonParams = {
  g_tk: 5381,
  format: 'json',
  inCharset: 'utf - 8',
  outCharset: 'utf - 8',
  notice: 0,
}
export const options = {
    param: 'jsonpCallback'
}
export const ERR_OK =0

// recommend.js

import jsonp from 'common/js/jsonp'
import {commonParams, options} from './config'

//  
export function getRecommend() {
  const url = 'https://c.y.qq.com/musichall/fcgi-bin/fcg_yqqhomepagerecommend.fcg'

  const data = Object.assign({}, commonParams, {
    platform: 'h5',
    uin: 0,
    needNewCode: 1
  })
  return jsonp(url,data,options)
}

//  .vue 



    import {getRecommend} from 'api/recommend'
    import {ERR_OK} from 'api/config'

    export default {
      created(){
        this._getRecommend()
      },
      methods: {
        _getRecommend(){
          getRecommend().then((res) => {
            if (res.code ===ERR_OK){
              console.log(res.data.slider)
            }
          })
        }
      }
    }




요약:

  • Object.assign 방법은 대상의 합병에 사용되며, 원본 대상 (source) 의 모든 열거 가능한 속성을 대상 대상 (target) 으로 복사합니다
  • Object.assign(target, source1, source2);
  • encodeURIComponent(URIstring) 함수는 문자열을 URI 어셈블리로 인코딩할 수 있습니다.URIString이 필요합니다.URI 어셈블리 또는 기타 인코딩할 텍스트를 포함하는 문자열
  • substring() 방법은 문자열에서 지정한 두 하단 사이의 문자를 추출하는 데 사용됩니다stringObject.substring(start,stop) start에 있는 문자를 포함하지만stop에 있는 문자는 포함하지 않습니다.마이너스 매개변수가 허용되지 않습니다
  • 좋은 웹페이지 즐겨찾기