今天,在研究flask+vue的教程https://testdriven.io/blog/developing-a-single-page-app-with-flask-and-vuejs/

进行到后端flask新建Books数组,前端vue通过axios获取后端传来的数据时,一直报错Error: "Request aborted"

看了下开发者工具,没有其他的提示,很是摸不着头脑。

BOOKS = [
    {
        'title': 'On the Road',
        'author': 'Jack Kerouac',
        'read': True
    },
    {
        'title': 'Harry Potter and the Philosopher\'s Stone',
        'author': 'J. K. Rowling',
        'read': False
    },
    {
        'title': 'Green Eggs and Ham',
        'author': 'Dr. Seuss',
        'read': True
    }
]

这是后端Books数组,奇怪的是,在会后的"]"之后,加了个";",竟然就好用了,实在不理解。

运行成功了之后,把";"去掉了也好用。

好奇怪,遇到此情况的大虾们欢迎留言交流。

Logo

前往低代码交流专区

更多推荐