parse: (response, options) =>
@totalRecords = parseInt(response.result_count)
@totalPages = Math.ceil(@totalRecords / @perPage)
response.data
在本地开发环境、本地生产环境中完美运行。但是当部署到生产环境时,解析函数无法取回任何数据(甚至没有被触发)。
在浏览器控制台中播放,使用 collection.fetch(),它有响应,但无法将它传递到我的收藏中。