**已关闭。**此问题需要debugging details。目前不接受回答。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
2天前关闭。
Improve this question的
我在将某些数据保存到数据库时遇到问题。这是我得到的错误,
app.js:23953 Uncaught (in promise) AxiosError {message: 'Request failed with status code 500', name: 'AxiosError', code: 'ERR_BAD_RESPONSE', config: {…}, request: XMLHttpRequest, …}
个字符
我的路由也在工作,并安装了laravel-cors。我还在Vue提交时提供了csrf令牌。
<script>
export default {
name: 'SignUp',
data(){
return {
user: {
_token: document.head.querySelector('meta[name="csrf-token"]').getAttribute('content'),
user_id: Math.random() * 9999999,
username: '',
password: '',
phone_number: '',
email: '',
}
}
},
methods: {
submitNow(){
this.$emit('onSubmit', this.user)
}
}
}
</script>
型
这是我的模型
class Accounts extends Model
{
use HasFactory;
public $table ="accounts";
public $timestamps = false;
protected $guarded = []; // tanggal error
public $fillable = [
'user_id',
'username',
'password',
'user_level',
'email',
'phone_number',
];
}
型
这是我的路线
Route::get('/', function () {
return view('welcome');
});
Route::post('/signup', [Accounts::class, 'sign_up'])->name('sign_up');
型
我想知道如何解决我现在面临的这个问题。谢谢你的帮助!
1条答案
按热度按时间oknrviil1#
我真的很抱歉愚蠢的问题,我已经修复了一遍,错误在这里,
字符串
谢谢你的理解