我试图对php脚本创建一个简单的AJAX调用。
request.js
<form [formGroup]="newUserForm" #f="ngForm" (ngSumbit)="createUser()">
sample.php
var xhr = new XMLHttpRequest();
xhr.open('GET', './assets/script/api/sample.php');
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && (xhr.status >= 200 && xhr.status <= 207)) {
console.log(xhr.responseText);
}
}
xhr.send();
错误:
无法加载资源:服务器响应状态为404 (未找到)(localhost:7456 / assets / script / api / sample.php)
答案 0 :(得分:0)
最近解决了此问题。 php文件应放在构建文件夹中。