我對Laravel很新,我正在創建一個「更新配置文件」頁面。一切都很好,除了保存我的個人資料。由於我已經聲明電子郵件必須是唯一的 - 我會收到錯誤消息。非常有意義。我一直在閱讀this SO post關於我認爲是同樣的問題。 我使用的形式請求來處理我的驗證: public function rules()
{
return [
'name' => 'required',
我創建了一個插件來創建用戶配置文件頁面。在此,用戶可以通過表單更新自定義元信息。這是我的功能: // Function to edit User Meta
function personalfragebogen_konto_bearbeiten() {
global $current_user;
// Get User Meta
$strasse = get_user_meta($
我的Django站點有兩種用戶配置文件,一種用於普通用戶(MyUserProfile),另一種用於員工(EmployeeUserProfile)。 models.py: class MyUserProfile(models.Model):
user = models.OneToOneField('auth.user', related_name='userprofile')
w
我在views.py文件這種方法 def guest_login(request):
form = SomeForm(request.POST or None)
if form.is_valid():
email = request.POST['email']
password= request.POST['password']
u = au
這是我的錯誤: Showing /home/ubuntu/workspace/UMUV/app/views/users/show.html.erb where line #6 >>raised:
undefined method `name' for nil:NilClass
這是我的用戶有條件/顯示: <% if @profile_info.present? %>
<%= @p