获取发送参数的帖子,但不返回带有curl的数据

时间:2019-04-04 20:26:01

标签: php reactjs curl fetch drupal-8

问题是与此one有什么关系,但我在那儿找不到答案。

领先的提交功能:

export async function submitLeads(fdata) {
  let url = baseUrl+"/submit";
  let headers = new Headers();
  headers.append("Content-Type", "multipart/form-data")
  const response = await fetch(url, {
     method: "POST",
     body: fdata,
     header: headers
  });
if (response.ok) {
     return response.json()
}  else {
     console.log("There seems to be some error in fetching data" + response.statusText);
  }
}

PHP Lead提交功能:

public function processLeads(Request $request)
{
    $a_formSubmit = $request->request->all();
    $response = json_decode($this->curlPost(LEAD_END_POINT, $a_formSubmit), true);
    //echo json_encode($a_formSubmit);//still fine I am getting my input
    //exit;
    if ($isValidResult = isset($response['status']) && $response['status'] == 101) {
        //echo json_encode($response);//Here no I am getting a empty $response['data']; why??
        //exit;
        $this->setSubmittedSchools($session, $response['data']);
        LeadResponseLogger::logLeadResponse($a_formSubmit, $response['data']);
        echo json_encode($response['data']);
    }
}

卷曲帖子功能:

let formData = this.leadSubmitFields(this.state, this.props.appState);
submitLeads(formData).then((lead) => {
    console.log(lead);
});
  • 我正在通过 formData()对象创建和附加数据。我寄给他们 到api调用函数( submitLeads )。
  • 它达到给定的PHP(在drupal模块中的操作)功能和 打开php函数,再调用一个 curl 调用。
  • curl函数( curlPost )应该返回数据,它是 返回空值,但在邮递员中返回正确的值。
  • 我不确定是否必须更改请求“内容类型”或 drupal的.htaccess文件中还有其他内容。
  • 我在本地执行此操作,因此我已经设置了访问控制允许 .htaccess上的原始“ *”。

0 个答案:

没有答案