我想在使用angular 6的应用程序中使用Code Igniter的Controller和Model。
我的计划是:
我的问题是:
在发布此OP期间仍在开发我的应用程序。
auth.service
-提交表单时调用
getUserDetails(username,password){
//post details to API server return info if correct
return this.http.post<myData>('/api/auth.php',{
username,
password
})
}
这是将数据传递到控制器和控制器中的方式
我应该有:
public function login()
{
$this->form_validation->set_rules('username','Username','trim');
$this->form_validation->set_rules('password','Password','trim|callback_authentication');
if($this->form_validation->run() == FALSE)
{
$this->index();
}
else
{
redirect('Home');
}
}
我应该如何修复return this.http.post<myData>('/api/auth.php',{
以便调用函数登录名?