有人可以帮我解决这个问题吗?
mService.getDetailPlace(getPlaceDetailUrl(Common.currentResult.getPlace_id())).enqueue(new Callback<PlaceDetail>() {
@Override
public void onResponse(Call<PlaceDetail> call, Response<PlaceDetail> response) {
mPlace = response.body();
place_address.setText(mPlace.getResult().getFormatted_address());
place_name.setText(mPlace.getResult().getName());
}
@Override
public void onFailure(Call<PlaceDetail> call, Throwable t) {
}
});
如果有任何意义,我正在使用Mac
答案 0 :(得分:3)
我不太清楚问题出在哪里,但我假设__PyEval_GetBuiltinId
已损坏/未安装。
因此,我所做的全部修复工作是pip uninstall recordclass
,然后是pip install --no-cache-dir recordclass
,它似乎奏效了