很抱歉给您分配了一个愚蠢的问题,我必须在通知页面上写上我知道发件人和通知数据的地方, 但我无法串联发送者和通知的数据
GoalViewHolder(View itemView, final OnItemClickListener listener){
...
itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(mContext,MainGoalInfo.class);
((Activity) mContext).startActivityForResult(intent,1);
...
}
});
...
}
方法getdata
let responseJson = await response.json();
console.log(responseJson)
if(responseJson.success){
// this.setState(this.state.data.sender=responseJson.data.sender)
responseJson.data.map(notificationInfo=>{
this.getData(notificationInfo.id,notificationInfo.sender)
})
}
else{
console.log("No notification")
}
最佳答案如下:
..FETCH
const responseJson = await response.json();
this.setState({data:responseJson})
// console.log(responseJson.success)
if(typeof responseJson.success != "undefined"){
this.setState({
data=[...this.state.data,sender]
})
但我需要它
Array [
Object {//sender
"name": "Admin Adminovich",
#someother data
},
Object {
"name": "Test Testovich",
#someother data
},
Object {
"name": "just4ina",
#someother data
},
所有串联都不是我想要的