検証は反応しておらず、提出をブロックしています。 誰かが行方不明または何が間違っているのか教えてもらえますか? 明らかに、メソッドisValidが呼び出されると、バリデーターは検証をブロックします。 次のように実体では、この変数が検証される: /** * @var 文字列 は* @assert \ NotBlank() */ プライベート$ pGaWeeks。エンティティのコメントとしてのsymfonyの検証:何が見逃しですか?
投稿は、pGaWeeks変数に与えられたものと、空のままになったときにブロックされます。 エラーメッセージは表示されません。 "@Assert \ NotBlank()"がコードから取り除かれた場合、投稿は正常に機能します。
私はDataHomeController.php
public function newAction(Request $request){
if(!$this->hasFuAccess() || !$this->isAdmin()){
throw new AccessDeniedException("You do not have permission to access");
}
$newrecord =array();
$dataA = new DataAPatient();
array_push($newrecord,$dataA);
$appendForm = $this->createNewForm($dataA);
$appendForm->handleRequest($request);
if($appendForm->isSubmitted()){//Save
if($appendForm->isValid()){
$tmp_pKpPatientid = $this->storeDataAPatient($dataA);
$records = $this->getStepByStepSearch($dataA);
return $this->render('GeneralCommonBundle:DataHome:show.html.twig', array(
'records'=> $records,
'isNew' => false,
'newrecord' => $newrecord
));
}
// }
}
return $this->render('DataLiveBundle:DataAPatient:new.html.twig', array(
'form' => $appendForm->createView(),
));
}
そしてconfig.yamlでもあります。
validation: { enabled: true, enable_annotations: true }
そしてhtml.twig:
{% extends '::base.html.twig' %}
{% block body %}
{{ form_start(form, {attr: {novalidate: 'novalidate'}}) }}
{% form_theme form 'bootstrap_3_horizontal_layout.html.twig' %}
<h1 style="margin-top:60px"><img src="{{ asset('public/images/icons/icon_data_gross.gif') }}"> Create a New Patient Dataset</h1>
<div role="tabpanel" class="tab-pane active" id="PatientInfo">
<div class="panel panel-default">
<div class="panel-body">
{% include 'DataLiveBundle:DataAPatient:form.html.twig' with {
'form':form, 'isNew': true } only %}
</div>
</div>
</div>
{{ form_row(form._token) }}
{{ form_end(form) }}
{% endblock %}
はEDIT:
DataLiveBundle:DataAPatient :form.html.twig:
{% block body %}
<div class="row" style='margin-bottom: 5px'>
<div style='white-space: nowrap'>
<div class='col-xs-5'>
<div class='col-xs-5'>{{ form_label(form.pSnnid, 'SNN-ID (if known)', {'label_attr':{'style':'margin-top:3px'}})}}</div>
<div class='col-xs-2'>{{ form_widget(form.pSnnid, {'attr':{'style':'width:105px'}})}}</div>
</div>
<div class='col-xs-5'>
<div class='col-xs-5'>{{ form_label(form.pPlaceOfBirth, 'Place of birth', {'label_attr':{'style':'margin-top:3px' }})}}</div>
<div class='col-xs-2'>{{ form_widget(form.pPlaceOfBirth , {'attr': {'style':'width:200px' }})}}</div>
</div>
</div>
</div>
<div class="row" style='margin-bottom: 5px'>
<div style='white-space: nowrap'>
<div class='col-xs-5'>
<div class='col-xs-5'>{{ form_label(form.pDateOfBirth, 'Date of birth', {'label_attr':{'style':'margin-top:3px'}})}}</div>
<div class='col-xs-2'> {{ form_widget(form.pDateOfBirth, {'id': 'P_Date_of_birth','attr':{'style':'width:100px', }})}}</div>
</div>
<div class='col-xs-5'>
<div class='col-xs-5'>{{ form_label(form.pPatientNo, 'Patient ID/Nr. NEO', {'label_attr':{'style':'margin-top:5px'}})}}</div>
<div class='col-xs-2'>{{ form_widget(form.pPatientNo, {'attr':{'style':'width:105px' }})}}</div>
</div>
</div>
</div>
<div class="row" style='margin-bottom: 5px'>
<div style='white-space: nowrap'>
<div class='col-xs-5'>
<div class='col-xs-5'>{{ form_label(form.pGaWeeks, 'Gestational age', {'label_attr':{'style':'margin-top:3px'}})}}</div>
<div class='col-xs-2'> <div class="input-group">{{ form_widget(form.pGaWeeks, {'id': 'P_GA_weeks', 'attr':{'style':'width:45px'}})}}<div class="input-group-addon">w</div></div>
<div class="input-group">{{ form_widget(form.pGaDays, {'id': 'P_GA_days','attr':{'style':'width:45px' }})}}<div class="input-group-addon">d</div></div></div>
</div>
<div class='col-xs-5'>
<div class='col-xs-5'>{{ form_label(form.pBirthWeight, 'Birth weight', {'label_attr':{'style':'margin-top:3px'}})}}</div>
<div class='col-xs-2'><div class="input-group">{{ form_widget(form.pBirthWeight, {'attr':{'style':'width:60px'}})}}<div class="input-group-addon">g</div></div></div>
</div>
</div>
</div>
<div class="row" style='margin-bottom: 5px'>
<div style='white-space:nowrap'>
<div class='col-xs-5'>
<div class='col-xs-5'>{{ form_label(form.pSex, 'Sex/Gender', {'label_attr':{'style':'margin-top:3px'}})}}</div>
<div class='col-xs-2' style='margin-top: 5px'>{{ form_widget(form.pSex, {'attr':{'style':'text-indent:10px'}})}}</div>
</div>
<div class='col-xs-5'>
<div class='col-xs-5'>{{ form_label(form.pNumberOfInfants, 'No. of infants in birth', {'label_attr':{'style':'margin-top:5px'}})}}</div>
<div class='col-xs-2'>{{ form_widget(form.pNumberOfInfants, {'attr':{'style':'width:35px'}})}}</div>
</div>
</div>
</div>
<div class="row" style='margin-bottom: 5px'>
<div style='white-space: nowrap'>
<div class='col-xs-5'>
{#<div class='col-xs-5'>{{ form_label(form.pEpoStudy, 'Child in EPO study')}}</div>#}
{# <div class='col-xs-2'>{{ form_widget(form.pEpoStudy, {'attr':{'style':'text-indent:10px'}})}}</div>#}
</div>
<div class='col-xs-5'>
<div class='col-xs-5'>{{ form_label(form.pRank, 'Rank (if >1)', {'label_attr':{'style':'margin-top:5px'}})}}</div>
<div class='col-xs-2'>{{ form_widget(form.pRank, {'attr':{'style':'width:35px'}})}}</div>
<div style='padding-right: 80px; margin-top: 8px'> (A/B/C/D..)</div>
</div>
</div>
<div style= 'padding-left:40px ; margin-top:50px;'> (<font color=red>*</font> = input necessary)</div>
{% if isNew == true %}
<div class='col-xs-2'>{{ form_widget(form.submit_new, {'attr':{'style':'width:160px ; color:red; margin-left:900px'}})}}</div>
{% else %}
<div style="padding-left:1000px"> <a class='btn btn-default btnNext'><font color=red>Continue »</font></a></div>
{% endif %}
</div>
{% endblock %}
そしてcreateNewFormのためのコード:
private function storeDataAPatient($dataA){
if (!$dataA) {
throw $this->createNotFoundException('Unable to find DataEFu2 entity.');
}
$em = $this->getDoctrine()->getManager();
$session = $this->getRequest()->getSession();
$em->persist($dataA);
$em->flush();
$tmp_pKpPatientid= $dataA->getpKpPatientid();
}
storeDataAPatient:
private function storeDataAPatient($dataA){
if (!$dataA) {
throw $this->createNotFoundException('Unable to find DataEFu2 entity.');
}
$em = $this->getDoctrine()->getManager();
$session = $this->getRequest()->getSession();
$em->persist($dataA);
$em->flush();
$tmp_pKpPatientid= $dataA->getpKpPatientid();
}
短いコードです:nは有効とパフォーマンス向上のために、提出があれば。もしあなたが 'dump($ appendForm-> getData());'? 'pGaWeeks'は空ですか? エラー(「pGaWeeksは空白にしてはいけません)」は、レンダリングしていないため表示されません。 – baris1892
'storeDataAPatient'とは何ですか? –
"pGaWeeks"は常に空白です。 –