「注册」英文怎么说?秒懂sign up/sign in/log in!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了「注册」英文怎么说?秒懂sign up/sign in/log in!相关的知识,希望对你有一定的参考价值。
参考技术A注册的英文 ,你知道怎么说吗?比方说,你今天想要加入一个新的网站,它这时候就会要求你要注册,而网站上可能有sign up、sign in、log in…等英文单字,可要搞清楚它们的中文意思罗!
下面说明注册的英文说法跟英文例句,赶快学起来吧!
1.sign up 注册、报名
注册的英文叫做sign up,也就是说你还没有帐号,你需要注册一个才能登入。
注册相关英文例句:
例: Did you sign up yet? The course starts in o weeks, you know. 您报名了吗? 你知道,该课程将在两周内开始。
例: You need to sign up before you log in. 您需要先注册才能登录。
2.sign in 登入
sign up 跟sign in常常很多人搞混,sign in中文意思是登入的意思唷!
例:Go to the home page and sign in. 转到主页并登录。
3.log in 登入
log in 也是登入的意思。
例: He typed in his password to log in. 他输入密码登录。
log in, log in 中文, sign in, sign in 中文, sign up, sign up 中文, 报名 英文, 登入 英文, 注册 英文
覆盖设计after_sign_up_path_for不起作用
在路由中,我有根路径指向"home#index"
,但当我尝试覆盖它时,after_sign_up_path_for在我登录或注册时将我重定向到根路径。我试图将它放在设计子类控制器和application_controller中,但它不起作用。我需要做什么?
应用控制器
class ApplicationController < ActionController::Base
protect_from_forgery
def after_sign_up_path_for(resource)
show_cities_path(resource)
end
end
登记控制员
class RegistrationsController < ApplicationController
def after_sign_up_path_for(resource)
show_cities_path(resource)
end
end
路线
root :to => "home#index"
您是否通过执行rake routes
检查了show_cities_path是否存在?可能值得一看https://github.com/plataformatec/devise/wiki/How-To:-Change-the-redirect-path-after-destroying-a-session-i.e.-signing-out
如果您还启用了可确认模块,则必须覆盖after_inactive_sign_up_path_for
,因为新注册处于“非活动状态”,直到确认为止。当Confirmable处于活动状态时,after_sign_up_path_for
似乎没有被调用。
虽然我迟到了比赛,但我遇到了这个问题并且无法找到解决方案。
如果您使用自己的RegistrationsController来自定义Devise,那么您需要将after_sign_up_path_for(resource)方法添加到该控制器而不是ApplicationController。
在registrations_controller.rb中:
private
def after_sign_up_path_for(resource)
new_page_path
end
我一直在努力解决这个问题,直到意识到我已经忘记宣布我已经超越了设计注册控制器。就我而言,我正在使用:用户资源设计,所以我将其添加到routes.rb:
devise_for :users, :controllers => {:registrations => "registrations"}
之后,我在after_inactive_sign_up_path_for中指定的重定向工作。
Override devise registrations controller对此主题进行了更全面的讨论,并提供了替代声明覆盖的替代方法。
我刚刚吹了大约2个小时,但LiveReload是我的问题。我被重定向成功,但LiveReload正在接受development.sqllite上的更改并覆盖请求。
实际上,我们可以查看设计的源代码来解决问题,这很容易。
devise-3.4.1 $ vim app/controllers/devise/registrations_controller.rb
# POST /resource
def create
build_resource(sign_up_params)
resource_saved = resource.save
yield resource if block_given?
if resource_saved
if resource.active_for_authentication?
set_flash_message :notice, :signed_up if is_flashing_format?
sign_up(resource_name, resource)
respond_with resource, location: after_sign_up_path_for(resource)
else
set_flash_message :notice, :"signed_up_but_#{resource.inactive_message}" if is_flashing_format?
expire_data_after_sign_in!
respond_with resource, location: after_inactive_sign_up_path_for(resource)
end
else
clean_up_passwords resource
@validatable = devise_mapping.validatable?
if @validatable
@minimum_password_length = resource_class.password_length.min
end
respond_with resource
end
end
如代码所示:
if resource.active_for_authentication?
...
respond_with resource, location: after_sign_up_path_for(resource)
else
...
respond_with resource, location: after_inactive_sign_up_path_for(resource)
If using OmniAuth custom callback controllers with Rails 5.2:
在我的特定情况下,后注册路径不起作用:但我使用OmniAuth与自定义回调控制器,它调用after_sign_in_path_for
而不是前者:
def google_oauth2 @user = User.from_omniauth(request.env [“omniauth.auth”])
if @user.persisted?
# Here's the guilty line your honour:
sign_in_and_redirect @user, event: :authentication #this will throw if @user is not activated
set_flash_message(:notice, :success, kind: "Google") if is_navigational_format?
else
session["devise.google_oauth2_data"] = request.env["omniauth.auth"]
redirect_to new_user_registration_url
end
结束
........并且sign_in_and_redirect
路径重定向到after_sign_in_path_for
方法。所以我为会话生成了一个新的设计控制器,并简单地覆盖了该方法。问题解决了!
以上是关于「注册」英文怎么说?秒懂sign up/sign in/log in!的主要内容,如果未能解决你的问题,请参考以下文章
cisco packet tracer_sign up(基于临时邮箱/qq邮箱注册并成功在软件中登录)(2021.9实践)(应对Sorry, we can‘t find a NetAcad...)(代