在使用插件的离子型应用程序中,我有以下用例:
1.如果用户未登录:
Show SplashScreen> LoginPage is pushed to stack >
Hide SplashScreen in login page
2.如果用户未登录:
Show SplashScreen > Login page pushed to stack>
Landing page pushed to stack (after user logs in) > Hide SplashScreen.
预期行为:
在场景-2中,我希望SplashScreen不显示登录页面,
当我试图使用index.html中设置的用户名和密码登录时,出现了如下错误:
ValueError at /login_action/
The view sign.views.login_action didn't return an HttpResponse object. It returned None instead.
Request Method: POST
Request URL: http://127.0.0.1:8000/login_action/
Django Version: 1.11.1
Exception Typ
对于我的网站布局,我希望每个内容页都有相同的填充,但我希望登陆页组件没有这样的填充。为了实现这一点,我使用了一个嵌套的React路由器;外部开关检查它是否应该显示登陆页面。如果没有,它会呈现一个ContentPage,它会放置一个外部填充div,然后使用另一个React路由器在适当的内容中加载。我有一个重定向的情况在内部开关,以便如果用户键入一个不存在的url,它将重定向他们到登陆页。但是,错误的urls现在给出了这个错误:
You tried to redirect to the same route you're currently on: "/"
这是我的外路由器
我有一个独立的css/更少的文件,我的登陆/登录页面。我如何告诉gulp,它应该为我编译两个文件?这是我的方法,不幸的是只为我生成一个文件。
elixir(function (mix) {
// only for the landing-page
mix.less('landing.less')
.version('css/landing.css');
// for the application, after login
mix.less('app.less')
.version