- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两种模型,一种用于用户,另一种用于许可证。如果用户是用户类型牙医或 dentry 保健员,那么他们将需要输入他们的许可证信息。在我的用户模型中,我有一条规则,规定一个许可证属于一个用户。在我的许可证模型中,我有一条规则,规定许可证属于用户。当我提交正确用户类型的用户的许可证号、状态和到期日期时,他们的信息会很好地存储在数据库中。 我遇到的问题是,当同一个用户返回他们的个人资料并更新例如他们的到期日期时,由于某种原因,数据库中有该用户的两个条目。
修改 Controller
if( $user->usertype == 'dental hygienist' || $user->usertype == 'dentist' && !isset($license_num ) && !isset($license_state) && !isset($license_exp)) {
$license = new License();
$license->user_id = $id;
$license->temp_id = $id;
$license->license_expiration_date = Input::get('expiration_date');
$license->license_number = Input::get('license_number');
$license->license_state = Input::get('license_state');
$license->save();
}else if ($user->usertype == 'dental hygienist' || $user->usertype == 'dentist' && isset($license_num ) && isset($license_state) && isset($license_exp)){
$license = License::find($id);
$license->license_expiration_date = Input::get('expiration_date');
$license->license_number = Input::get('license_number');
$license->license_state = Input::get('license_state');
$license->save();
}
查看
@extends('layouts.master')
@section('content')
<div class="container profile-wrapper" style="position: relative;top:170px;">
<div class="col-lg-8 profile-content">
<div class="panel panel-default">
<div class="panel-heading">{{ucwords($user->firstname)}}, Update Your Profile Below</div>
@if($errors->any())
<div class="alert alert-error">
<a class="close" data-dismiss="alert" href="#" aria-hidden="true">×</a>
{{ implode('', $errors->all('<li class="error"><b>:message</b></li>')) }}
</div>
@endif
<div class="panel-body">
{{ Form::model($user, array('url' => array('user/profile/update', $user->id), 'method' => 'PUT', 'class'=>'form-inline edit-form')) }}
<fieldset>
<legend>Personal Information</legend>
<div class="form-group">
<label for="firstname">First Name</label>
{{ Form::text('firstname', null, array('class' => 'form-control input-sm')) }}
</div>
<div class="form-group">
<label for="lastname">Last Name</label>
{{ Form::text('lastname', null, array('class' => 'form-control input-sm')) }}
</div>
<div class="form-group">
<label for="zipcode">Zip Code</label>
{{ Form::text('zipcode', null, array('class' => 'form-control input-sm')) }}
</div>
</fieldset>
<fieldset>
<legend>Professional Information</legend>
<div class="form-group">
<label for="experience">Years Experience</label>
{{ Form::text('temp_experience', null, array('class' => 'form-control input-sm')) }}
</div>
<div class="form-group">
<label for="hourlyrate">Hourly Rate</label>
{{ Form::text('temp_hourly_rate', null, array('class' => 'form-control input-sm')) }}
</div>
<div class="form-group temp_travel_input">
<label for="zipcode">Willingness to Travel</label>
{{ Form::text('temp_travel', null, array('class' => 'form-control input-sm')) }}
</div><!-- end .form-group -->
<!-- conditional statement for different temp types -->
<div class="form-group mtop-20">
<label for="temp_software_experience">Software Experience:</label><br>
<label class="checkbox-inline">
<input name="software[]" type="checkbox" value="Practiceworks" <?php $software = explode(',', $user->temp_software_experience); if(in_array("Practiceworks",$software)) echo "checked"; ?>> Practiceworks
</label>
<label class="checkbox-inline">
<input name="software[]" type="checkbox" value="Softdent" <?php $software = explode(',', $user->temp_software_experience); if(in_array("Softdent",$software)) echo "checked"; ?>> Softdent
</label>
<label class="checkbox-inline">
<input name="software[]" type="checkbox" value="Ortho trac" <?php $software = explode(',', $user->temp_software_experience); if(in_array("Ortho trac",$software)) echo "checked"; ?>> Ortho trac
</label>
<label class="checkbox-inline">
<input name="software[]" type="checkbox" value="Dentrix" <?php $software = explode(',', $user->temp_software_experience); if(in_array("Dentrix",$software)) echo "checked"; ?>> Dentrix
</label>
<label class="checkbox-inline">
<input name="software[]" type="checkbox" value="Easy Dental" <?php $software = explode(',', $user->temp_software_experience); if(in_array("Easy Dental",$software)) echo "checked"; ?>> Easy Dental
</label>
<label class="checkbox-inline">
<input name="software[]" type="checkbox" value="Eaglesoft" <?php $software = explode(',', $user->temp_software_experience); if(in_array("Eaglesoft",$software)) echo "checked"; ?>> Eaglesoft
</label>
<label class="checkbox-inline">
<input name="software[]" type="checkbox" value="Other" <?php $software = explode(',', $user->temp_software_experience); if(in_array("Other",$software)) echo "checked"; ?>> Other
</label>
</div><!-- end .form-group -->
</fieldset>
@if($user->usertype == "dental hygienist")
<div class="form-group mtop-20">
<label for="temp_software_experience">Anesthesia Certified:</label><br>
<label class="radio-inline">
<input name="answer[]" type="radio" value="1" > Yes
</label>
<label class="checkbox-inline">
<input name="answer[]" type="radio" value="0"> No
</label>
</div><!-- end .form-group -->
<fieldset>
<legend>License Information</legend>
<div class="form-group">
<label for="license_number">License Number</label>
<input type="text" class="form-control input-sm" name="license_number" value="@if($user->license){{$user->license->license_number}}@endif" required/>
</div>
<div class="form-group">
<label for="license_state">License State</label>
<select name="license_state" class="form-control input-sm">
<option selected value="@if($user->license){{$user->license->license_state}}@endif">@if($user->license){{$user->license->license_state}}@endif</option>
<option value="">-- UNITED STATES --</option>
<option value="Alabama">Alabama</option>
<option value="Alaska">Alaska</option>
<option value="Arizona">Arizona</option>
<option value="Arkansas">Arkansas</option>
<option value="California">California</option>
<option value="Colorado">Colorado</option>
<option value="Connecticut">Connecticut</option>
<option value="Delaware">Delaware</option>
<option value="Florida">Florida</option>
<option value="Georgia">Georgia</option>
<option value="Hawaii">Hawaii</option>
<option value="Idaho">Idaho</option>
<option value="Illinois">Illinois</option>
<option value="Indiana">Indiana</option>
<option value="Iowa">Iowa</option>
<option value="Kansas">Kansas</option>
<option value="Kentucky">Kentucky</option>
<option value="Louisiana">Louisiana</option>
<option value="Maine">Maine</option>
<option value="Maryland">Maryland</option>
<option value="Massachusetts">Massachusetts</option>
<option value="Michigan">Michigan</option>
<option value="Minnesota">Minnesota</option>
<option value="Mississippi">Mississippi</option>
<option value="Missouri">Missouri</option>
<option value="Montana">Montana</option>
<option value="Nebraska">Nebraska</option>
<option value="Nevada">Nevada</option>
<option value="New Hampshire">New Hampshire</option>
<option value="New Jersey">New Jersey</option>
<option value="New Mexico">New Mexico</option>
<option value="New York">New York</option>
<option value="North Carolina">North Carolina</option>
<option value="North Dakota">North Dakota</option>
<option value="Ohio">Ohio</option>
<option value="Oklahoma">Oklahoma</option>
<option value="Oregon">Oregon</option>
<option value="Pennsylvania">Pennsylvania</option>
<option value="Rhode Island">Rhode Island</option>
<option value="South Carolina">South Carolina</option>
<option value="South Dakota">South Dakota</option>
<option value="Tennessee">Tennessee</option>
<option value="Texas">Texas</option>
<option value="Utah">Utah</option>
<option value="Vermont">Vermont</option>
<option value="Virginia">Virginia</option>
<option value="Washington">Washington</option>
<option value="West Virginia">West Virginia</option>
<option value="Wisconsin">Wisconsin</option>
<option value="Wyoming">Wyoming</option>
</select>
</div>
<div class="form-group mtop-20">
<label for="experience">Expiration Date</label>
<div class="input-group">
<span class="input-group-addon input-sm"><span class="glyphicon glyphicon-calendar"></span></span>
<input type="date" class="form-control input-sm" name="expiration date" value="@if($user->license){{$user->license->license_expiration_date}}@endif" required>
</div>
</div>
</fieldset>
@endif
{{Form::hidden('uid', $user->id)}}
<div class="form-group">
{{ Form::submit('Update', array('class'=>'btn btn-primary form-control'))}}
</div>
{{ Form::close() }}
</div><!-- end .panel-body -->
</div><!-- end .panel/default -->
</div><!-- end .profile-content -->
<div class="col-lg-4">
image
</div>
</div><!-- end .container/profile-wrapper -->
@stop
Controller
public function update($id)
{
// validate
// read more on validation at http://laravel.com/docs/validation
$rules = array(
'firstname' => 'required|min:3|alpha',
'lastname' => 'required|min:3|alpha',
'zipcode' => 'required|min:5|numeric',
'temp_experience' => 'required|min:1|max:50|numeric',
'temp_travel' => 'required|numeric',
'temp_hourly_rate' => 'required|numeric|min:10'
);
$validator = Validator::make(Input::all(), $rules);
// process the login
if ($validator->fails()) {
return Redirect::to('user/profile/' . $id . '/edit')
->withErrors($validator)
->withInput();
} else {
$software_checked = Input::get('software');
if(is_array($software_checked))
{
$imploded_software = implode(',', $software_checked);
}
// store
$user = User::find($id);
$license_num = Input::get('license_number');
$license_state = Input::get('license_state');
$license_exp = Input::get('expiration_date');
$user->firstname = Input::get('firstname');
$user->lastname = Input::get('lastname');
$user->zipcode = Input::get('zipcode');
$user->temp_experience = Input::get('temp_experience');
$user->temp_travel = Input::get('temp_travel');
$user->temp_hourly_rate = Input::get('temp_hourly_rate');
$user->temp_software_experience = $imploded_software;
if(isset($license_num) && isset($license_state) && isset($license_exp)){
$user->approved = 1;
}
else{
$user->approved = 0;
}
if( $user->save() ) {
if( $user->usertype == 'dental hygienist' || $user->usertype == 'dentist' && !$user->license->temp_id ) {
could this be the problem?->$license = new License();
$license->user_id = $id;
$license->temp_id = $id;
$license->license_expiration_date = Input::get('expiration_date');
$license->license_number = Input::get('license_number');
$license->license_state = Input::get('license_state');
$license->save();
}
// redirect
Session::flash('message', 'Successfully updated profile!!');
return Redirect::to('user/profile/'.$id.'');
}
}
}
用户模型
<?php
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;
class User extends Eloquent implements UserInterface, RemindableInterface {
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'users';
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = array('password');
/**
* Get the unique identifier for the user.
*
* @return mixed
*/
public function getAuthIdentifier()
{
return $this->getKey();
}
/**
* Get the password for the user.
*
* @return string
*/
public function getAuthPassword()
{
return $this->password;
}
/**
* Get the e-mail address where password reminders are sent.
*
* @return string
*/
public function getReminderEmail()
{
return $this->email;
}
public static function getTemps()
{
// Create a array of allowed types.
$types = array('dental hygienist', 'dentist', 'dental assistance');
// Get what type the user selected.
$type = Input::get('temptype');
//Get user location
//$location = Input::get('zipcode');
// Make sure it is a valid type.
if(!in_array($type, $types))
{
return App::abort(500, "Invaild temptype.");
}
$temps = DB::table('users')
->join('availability', 'users.id', '=', 'availability.userid')
->select('users.id', 'users.firstname', 'users.lastname', 'users.zipcode', 'users.salary', 'availability.dateavailable')
->where('usertype', $type)
//->where('zipcode', $location)
->get();
return $temps;
}
public function license()
{
return $this->hasOne('License');
}
许可模式
<?php
class License extends Eloquent {
protected $table = 'temps_license';
public function user()
{
return $this->belongsTo('User');
}
}
最佳答案
改变
$license = new License();
$license->user_id = $id;
$license->temp_id = $id;
$license->license_expiration_date = Input::get('expiration_date');
$license->license_number = Input::get('license_number');
$license->license_state = Input::get('license_state');
$license->save();
与
$license = $user->license;
$license->temp_id = $id;
$license->license_expiration_date = Input::get('expiration_date');
$license->license_number = Input::get('license_number');
$license->license_state = Input::get('license_state');
$license->save();
如果您想确保不创建重复项,您还可以修改迁移文件以包含 $table->unsignedInteger('user_id')->unique()
关于php - Laravel 4 重复数据库条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20287367/
我在 JavaScript 文件中运行 PHP,例如...... var = '';). 我需要使用 JavaScript 来扫描字符串中的 PHP 定界符(打开和关闭 PHP 的 )。 我已经知道使
我希望能够做这样的事情: php --determine-oldest-supported-php-version test.php 并得到这个输出: 7.2 也就是说,php 二进制检查 test.
我正在开发一个目前不使用任何框架的大型 php 站点。我的大问题是,随着时间的推移慢慢尝试将框架融入应用程序是否可取,例如在创建的新部件和更新的旧部件中? 比如所有的页面都是直接通过url服务的,有几
下面是我的源代码,我想在同一页面顶部的另一个 php 脚本中使用位于底部 php 脚本的变量 $r1。我需要一个简单的解决方案来解决这个问题。我想在代码中存在的更新查询中使用该变量。 $name)
我正在制作一个网站,根据不同的情况进行大量 PHP 重定向。就像这样...... header("Location: somesite.com/redirectedpage.php"); 为了安全起见
我有一个旧网站,我的 php 标签从 因为短标签已经显示出安全问题,并且在未来的版本中将不被支持。 关于php - 如何避免在 php 文件中写入
我有一个用 PHP 编写的配置文件,如下所示, 所以我想用PHP开发一个接口(interface),它可以编辑文件值,如$WEBPATH , $ACCOUNTPATH和 const值(value)观
我试图制作一个登录页面来学习基本的PHP,首先我希望我的独立PHP文件存储HTML文件的输入(带有表单),但是当我按下按钮时(触发POST到PHP脚本) )我一直收到令人不愉快的错误。 我已经搜索了S
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: What is the max key size for an array in PHP? 正如标题所说,我想知道
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我在 MySQL 数据库中有一个表,其中存储餐厅在每个工作日和时段提供的菜单。 表结构如下: i_type i_name i_cost i_day i_start i_
我有两页。 test1.php 和 test2.php。 我想做的就是在 test1.php 上点击提交,并将 test2.php 显示在 div 中。这实际上工作正常,但我需要向 test2.php
我得到了这个代码。我想通过textarea更新mysql。我在textarea中回显我的MySQL,但我不知道如何更新它,我应该把所有东西都放进去吗,因为_GET模式没有给我任何东西,我也尝试_GET
首先,我是 php 的新手,所以我仍在努力学习。我在 Wordpress 上创建了一个表单,我想将值插入一个表(data_test 表,我已经管理了),然后从 data_test 表中获取所有列(id
我有以下函数可以清理用户或网址的输入: function SanitizeString($var) { $var=stripslashes($var); $va
我有一个 html 页面,它使用 php 文件查询数据库,然后让用户登录,否则拒绝访问。我遇到的问题是它只是重定向到 php 文件的 url,并且从不对发生的事情提供反馈。这是我第一次使用 html、
我有一个页面充满了指向 pdf 的链接,我想跟踪哪些链接被单击。我以为我可以做如下的事情,但遇到了问题: query($sql); if($result){
我正在使用 从外部文本文件加载 HTML/PHP 代码 $f = fopen($filename, "r"); while ($line = fgets($f, 4096)) { print $l
我是一名优秀的程序员,十分优秀!