我将jwt用于身份验证,将php用于后端。令我惊讶的是,当我使用
responseType:“文本”
令牌未定义!!
我正在使用它在发布请求中将json解析为文本。
update(data){
const httpHeaders = new HttpHeaders()
.set('Authorization','Bearer '+this.token.get());
return this.http.post(`${this.baseUrl}/updateData`,data,{headers: httpHeaders,responseType: 'text'});
}
没有responseType的PS,应用抛出此错误:
消息:“ JSON在位置0处出现意外令牌U” http://localhost:8000/api/updateData
解析期间的Http失败