Frage: Die Daten wurden nicht zur Datenbank hinzugefügt, bitte geben Sie dem Management eine Antwort, danke
<!--Header-->
{include file="public:header" / }
<! --Navigation-->
{include file="public:nav" /}
<div class="row">
<!--Paging-->
< div class="col -md-8">
:register_form" /}-->
for="inputEmail1" class="col-sm-2 control-label">Benutzername:</label>
"name =" name "class =" form-control "id =" inputemail1 "placeholder =" userername "& gt;
& lt; input type =" text "name =" E-Mail "class =" Form-Control "id = "inputEmail2" placeholder="Email">
;
<div class="form-group">
="col-sm-10">
<input type="text" name="mobile" class="form-control" id="inputEmail3" placeholder="Mobile">
</div>
</div>
<div class="form-group">
<label for="inputPassword4" class="col-sm-2 control-label">密码:</label>
< ;div class="col-sm-10">
<input type="password" name="password" class="form-control" id="inputPassword4" placeholder="Password">
</ div>
</div>
<div class="form-group">
<label for="inputPassword5" class="col-sm-2 control-label">确认密码:</ label>
<div class="col-sm-10">
<input type="password" name="password_confirm" class="form-control" id="inputPassword5" placeholder="Password Confirm"> ;
</div>
</div>
m-10">
< ;button type="submit" class="btn btn-primary" id="register">注册</button>
</div>
</div>
</form>
</div>
<script>
$(function(){
$('click',function () {
// Warnung( $('#login').serialize());
$.ajax({
type:'post',
url: "{:url('index/user/insert')}",
Daten: $( '#login').serialize(),
dataType:'json',
success:function (data) {
alert('成功了');
}
})
})
})
</script> ;
{include file="public:right" /}
</div>
<!--Tail-->
{include file="public:footer" /}
<?php
namespace appindexcontroller;
use appcommoncontrollerBase;
use appcommonmodelUser als UserModel;
use thinkfacadeRequest ;
class Benutzer erweitert Base
{
öffentliches Funktionsregister()
{
$this->assign('title','Benutzerregistrierung');
return $this->fetch();
}
Verarbeitung Vom Benutzer übermittelte Registrierungsinformationen
öffentliche Funktion insert()
{
//Modell zum Erstellen von Daten verwenden
//Die vom Benutzer über das Formular übermittelten Daten abrufen
if(Request::isAjax()){
$data = Request:: Except ('password_confirm', 'post');
if (usermodel :: create ($ data)) {
Return ['STATUS' = & GT; '' ;
return ['status'=>0,'message'=>'Registrierung fehlgeschlagen, bitte überprüfen']; $this->error("Request type error", 'register');
} }
} }
}
Frage: Die Daten wurden nicht zur Datenbank hinzugefügt, bitte verwalten Sie die Antwort, danke
打开浏览器控制 台 看AJAX返回什么