我想将我的数组保存在从 Javascript XMLHTTP 请求发送的数据库中。
Javascript
function xml2() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
console.log(JSON.parse(this.responseText));
}
};
xhttp.open("POST", "http://localhost/sekai_adminlte3_rnd/api/rnd/postdata", true);
var singlevar = {"country_name":"Indonesia","country_code":"ID"}
xhttp.send(singlevar);
}
laravel 中的控制器
public function postdata(Request $request)
{
$country = Country::create([
'country_code' => $request->get('country_code'),
'country_name' => $request->get('country_name'),
]);
return $country;
}
使用此代码,我无法保存到数据库。
动漫人物
慕斯王
相关分类