我需要在30天前使用报告构建器描述的函数中定义参数默认值。我会在表达中加入什么?我尝试使用check_login(user,pass){
console.log("user:"+user+"\npass:"+pass);
let bodyString = JSON.stringify({user:user,password:pass});
let headers = new Headers({'Content-Type': 'application/json'}); // ... Set content type to JSON
let options = new RequestOptions({headers: headers}); // Create a request option
return this.http
.post(url,bodyString,options)
.map((response:Response)=> response.json() );
}
,但它返回以下错误。