摘要: 在Vue项目中,有些数据不是后台服务器返回的,所以我们需要在本地建立一个假服务器来存储一些数据 安装mockjs 终端输入: npm i mockjs 准备本地数据 在src目录下创建一个mock文件夹,文件夹下准备各种json文件,里面存储数据格式 注意:json文件格式不能有空格,需要格式化。j 阅读全文
posted @ 2023-02-04 14:02 BjpFee 阅读(126) 评论(0) 推荐(0)
摘要: 控制台报错:Cannot convert undefined or null to object 原因:使用了对象合并的方法 Object.assign(a,b) ,把b对象合并到a里面去,而这个方法的要求就是,a不能为空 阅读全文
posted @ 2023-02-04 13:20 BjpFee 阅读(2461) 评论(0) 推荐(0)
摘要: 控制台报错:Extraneous non-props attributes (k) were passed to component but could not be automatically inherited because component renders fragment or text 阅读全文
posted @ 2023-02-04 13:12 BjpFee 阅读(773) 评论(0) 推荐(0)