douzhang1364 2018-11-05 05:51 采纳率: 0%
浏览 109
已采纳

如何将Angular 6 POST值发送到Codeigniter功能?

Here is the

registration.component.ts

registrationDetails(event) {

const target = event.target;
const app_key = 'a9a4a7757d840aa317bb585f4acbdf0d';
const first_name = target.querySelector("#firstname").value;
const last_name = target.querySelector("#lastname").value;
const email = target.querySelector("#username").value;
const password = target.querySelector("#password").value;
const phone = target.querySelector("#phone_number").value;
this.Auth.postRegistration(first_name, last_name, email, password,phone,app_key).subscribe(
  data => {
    if ((data.status == 1)) {
      this.toastr.success('Registartion Successfull, Please login', "Thank you..!");
    } else {
      this.toastr.error(data.response, "OOPS..!");
    }
  }
);   }

and Here is the

auth.service.ts

postRegistration(first_name, last_name, email, password,phone,app_key) {
    return this.Http.post<objects>(`${this.baseUrl}/user/registerUser`, {
      first_name,
      last_name,
      email,
      phone,
      password,
      app_key
    });

when am running this file the posting values are not going to Codeigniter function what is the problem in this and what are changes should be done, actually core php works $_POST['email'] but $this->input->post('email') this is not working why ?

  • 写回答

1条回答 默认 最新

  • duanjiaolia97750 2018-11-05 05:56
    关注

    here you are passing raw data

    so try this

    postRegistration(first_name, last_name, email, password,phone,app_key) {
        const header = new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded')
        let body = 'first_name='+first_name+'&last_name='+last_name+'&email='+email+'&phone='+phone+'&password='+password+'&app_key='+app_key;
        return this.Http.post<objects>(`${this.baseUrl}/user/registerUser`, body, {headers: header});
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 有偿求qftp工具。能连接,下载文件,发送代码,windows环境,最好qt6 要qt creator写的
  • ¥70 刚刚看到一个人的网站居然是通过cname访问的
  • ¥15 Attributeerror:super object has no attribute '__sklearn_tags__'_'
  • ¥15 逆置单链表输出不完整
  • ¥15 宇视vms-B200-A16@R启动不了,如下图所示,在软件工具搜不到,如何解决?(操作系统-linux)
  • ¥500 寻找一名电子工程师完成pcb主板设计(拒绝AI生成式答案)
  • ¥15 关于#mysql#的问题:UNION ALL(相关搜索:sql语句)
  • ¥15 matlab二位可视化能否针对不同数值范围分开分级?
  • ¥15 已经创建了模拟器但是不能用来运行app 怎么办😭自己搞两天了
  • ¥15 关于#极限编程#的问题,请各位专家解答!