// 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文件的使用
<template>
<div>
recommend
</div>
</template>
<script type="text/ecmascript-6">
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)
}
})
}
}
}
</script>
<style lang="stylus" rel="stylesheet/stylus">
</style>
总结:
-
Object.assign
方法用于对象的合并,将源对象(source)的所有可枚举属性,复制到目标对象(target)。
Object.assign(target, source1, source2);
-
encodeURIComponent(URIstring)
函数可把字符串作为 URI 组件进行编码。 URIstring 必需。一个字符串,含有 URI 组件或其他要编码的文本。
-
substring()
方法用于提取字符串中介于两个指定下标之间的字符。
stringObject.substring(start,stop)
包括 start 处的字符,但不包括 stop 处的字符。不接受负的参数。
网友评论