<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
},
created() {
uni.request({
method: 'GET',
dataType: 'json',
url: 'http://127.0.0.1:8080/api/yuyue/dashboard',
data: {
a: [1, 2]
}
})
}
}
</script>
<style>
</style>
后端接收到的参数是/api/yuyue/dashboard?a=1%2C2
1 个回复
蜗牛小弟 (作者)
误解 、习惯了axios模式,这个要自己封装一下