- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我正在尝试登录系统。在 Angular 1 中,有一些方法可以设置
withCredentials:true
但我在 angular2 中找不到可行的解决方案
export class LoginComponent {
constructor(public _router: Router, public http: Http, ) {
}
onSubmit(event,username,password) {
this.creds = {'Email': 'harikrishna@gmail.com','Password': '01010','RememberMe': true}
this.headers = new Headers();
this.headers.append('Content-Type', 'application/json');
this.http.post('http://xyz/api/Users/Login', {}, this.creds)
.subscribe(res => {
console.log(res.json().results);
});
}
}
最佳答案
在 Angular > 2.0.0 中(实际上是从 RC2 开始)
http.get('http://my.domain.com/request', { withCredentials: true })
关于javascript - angular2 xhrfields withcredentials true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35007572/
我正在尝试登录系统。在 Angular 1 中,有一些方法可以设置 withCredentials:true 但我在 angular2 中找不到可行的解决方案 export class LoginCo
这个问题在这里已经有了答案: Http requests withCredentials what is this and why using it? (2 个答案) 关闭 4 年前。 我知道这是一
使用 Axios export function sendAll() { return (dispatch) => { dispatch(requestData()); retur
按照此处的建议:https://gist.github.com/HenrikJoreteg/2502497 ,我正在尝试将 onprogress 功能添加到我的 jQuery.ajax() 文件上传中
我刚刚在我的一个网站上安装了 dropzone ( http://www.dropzonejs.com/ ),以便每次拖放时上传图像。它工作得很好,但我现在尝试从该页面的子域上传图像。一切正常,但 s
我正在使用 xhrFields : { withCredentials: true } 在 jQuery $ajax 调用中,以便在我的查询中发送 session cookie。 该调用在我的 a
我是一名优秀的程序员,十分优秀!