标签: angular typescript ionic-framework
当我尝试从后端访问JSON响应的属性时,收到警告Property 'data' does not exist on type 'Object'。我所有的API响应都将具有标准格式
Property 'data' does not exist on type 'Object'
{ data: {}, status: 200, errorMsg: '' }
我想创建一个可重用的接口,以便可以将所有API响应转换为BackendResponse
我的问题是,存储此接口最合理的位置在哪里?应该在新服务中吗?