我有一个连接到IIS的Cordova应用程序。我发送时会收到额外的逗号:
$rootScope.httpConfig = {
headers: {
'Content-Type': 'application/json',
'authorization': 'bearer ' + response.Token
}
};
令牌没有逗号,在客户端和服务器之间的管道中的某处,附加了逗号。有什么想法吗?
现在,在我的IDispatchMessageInspector中,我正在测试删除尾随逗号。
if (authTokenJson.EndsWith(",")) authTokenJson =
authTokenJson.Remove(authTokenJson.Length - 1);