Authored by 陈林

容错了部分店铺信息返回数据结构不对的问题。review by 李犇。

... ... @@ -22,6 +22,10 @@ export default class BrandStoreService {
}
})
.then((json) => {
//在shopInfo 数据为空时,会返回[]数组,导致崩溃,在此做兼容
if(JSON.stringify(json) == "[]"){
json = {};
}
return json;
})
.catch((error) => {
... ...
... ... @@ -40,6 +40,10 @@ export default class RedBrandService {
}
})
.then((json) => {
//在shopInfo 数据为空时,会返回[]数组,导致崩溃,在此做兼容
if(JSON.stringify(json) == "[]"){
json = {};
}
return json;
})
.catch((error) => {
... ...