我正在尝试获得访问:4这是我的主机
{
"status": true,
"visits": 4
}
如何访问“访问”:4 in data:[]
const options = {
series: [
{
name: "Total Visits",
data: []
}
],
};
这是我的请求
axios
.get("http://localhost:5000/api/visit")
.then(response => {
console.log(response)
const counts = response.data.visits;
)}
请问我该怎么做
1条答案
按热度按时间hpcdzsge1#
试试这个应该可以