小编Scr*_*t47的帖子

PhoneGap/Cordova:防止水平滚动

我有一个建立在Cordova上的应用程序,在我的一些页面上,我能够从我的内容水平滚动到空白区域.

这很奇怪,因为我在那里没有任何东西超出了我的#wrapper设定范围width: 100%.

所以我想知道是否有一种方法可以完全禁用应用程序中的水平滚动?

更新:

请求页面上的代码:

body {
    background-color: #fff;
    font-family:Arial, Helvetica, sans-serif;
    color: #b7b8b9;
    height: 100%;
    width: 100%;
}

iframe{
    border: none;
    width: 100%;
    /*margin-top: 50px;*/


   }

#header{
    height: 50px;
    width: 100%;
}


<body>
         <div id="wrapper">
        <div id="header">
            <div class="headerback"><a href="index.html">Home</a></div>
            <div class="headerrefresh"><script>var pathname = window.location.pathname;</script><script>document.write('<a href="'+pathname+'">Refresh</a>')</script></div>
            <div class="headertitle"><h2>Get the Look</h2></div>

        </div><!--HEADER-->
    <iframe src="http://www.mbff.com.au/getthelook"></iframe>
    </div>
    </body>
Run Code Online (Sandbox Code Playgroud)

这是在水平滚动上发生的事情

html scroll cordova

8
推荐指数
2
解决办法
1万
查看次数

如何根据用户的角色将目标用户重定向到不同的路由?

我想基于他们的角色将我的用户重定向到不同的路线.我的应用程序中有两个安全区域,"admin"和"dashboard".我想检查用户是否经过身份验证,然后重定向到预期,但如果用户有角色编辑器,则应将其重定向到仪表板,否则如果他有角色,则应重定向到管理区域.

我在登录时使用了AuthenticatesAndRegistersUsers类.我在自定义控制器上有这个:

 /**
 * The default redirecTo path.
 *
 */
 protected $redirectTo = '/dashboard';
Run Code Online (Sandbox Code Playgroud)

因此,当用户通过身份验证时,它将被重定向到仪表板,但我想检查预期的URL是否在管理组路由上,如果用户具有管理员角色,则应将其重定向到管理区域.

我正在使用此中间件重定向到登录:

public function handle($request, Closure $next)
{
    if ($this->auth->guest())
    {
        if ($request->ajax())
        {
            return response('Unauthorized.', 401);
        }
        else
        {
            return redirect()->guest('auth/login');
        }
    }

    return $next($request);
}
Run Code Online (Sandbox Code Playgroud)

laravel laravel-5

8
推荐指数
1
解决办法
1万
查看次数

Android应用程序的身份验证模型

我将构建一个有2部分的系统:1.PHP网站(CakePHP).2.移动应用程序(Android和iPhone).

用户必须使用usr&pwd登录才能使用我的系统(网络和移动应用程序).但我没有很多用户身份验证的经验.我应该存储什么:usr&pwd,token string.我想为我的系统(Web和移动应用程序)找到"用户身份验证模型".

有没有人有关于用户身份验证的经验.有谁知道如何实现这个?

php iphone android design-patterns cakephp

7
推荐指数
1
解决办法
2913
查看次数

如何在Laravel中编辑和保存自定义配置文件?

我正在Laravel 4中创建简单的Web应用程序。我具有用于管理应用程序内容的后端。作为后端的一部分,我希望拥有UI来管理应用程序设置。我希望将配置变量存储在文件[文件夹:/app/config/customconfig.php ]中。

我想知道Laravel中是否有可能具有可通过后端UI进行管理/更新的自定义配置文件?

php configuration-files laravel laravel-4

7
推荐指数
4
解决办法
1万
查看次数

如何在bootstrap-fileinput插件中显示进度?

我有这个JavaScript代码:

$("#uploadFile").fileinput({
    uploadUrl: url,
    maxFilePreviewSize: 10240,
    allowedFileExtensions: ["xls", "xlsx", "csv"],
    maxFileCount: 1,
    language: 'es',
    theme: 'gly',
    autoReplace: true,
    maxFileSize: 4096,
    required: true,
    browseOnZoneClick: true
});

$('#uploadFile').on('fileuploaded', function(event, data, previewId, index) {
    var form = data.form,
      files = data.files,
      extra = data.extra,
      response = data.response,
      reader = data.reader;
    DisplayResults(response);
});
Run Code Online (Sandbox Code Playgroud)

bootstrap-fileinput有效,但在处理时没有显示进度.它仅显示上传文件时完全绘制了"处理..."文本的进度条,并在POST返回时更改为"完成"文本.

我正在使用这个插件:http://plugins.krajee.com/file-input

如何设置进度条以显示进度百分比?文件实际上传和文件处理时?

jquery file-upload jquery-file-upload bootstrap-file-upload

7
推荐指数
1
解决办法
1523
查看次数

How to prevent Visual Studio Code from pushing chained functions on to new line?

How do I prevent Visual Studio Code from pushing chained JavaScript functions on to a new line as can be seen illustrated by the GIF below:

As you can see, it makes the code extremely hard to view and extends a simple if check in to multiple lines. I am using the extension called Prettier - Code Formatter and I have looked through the preferences and found the following:

// Format a file on save. A formatter must be available, …
Run Code Online (Sandbox Code Playgroud)

javascript code-formatting visual-studio-code

7
推荐指数
1
解决办法
4331
查看次数

如何通过PHP将网站中的整个数字替换为波斯语数字?

如何通过PHP将身体或网站html中的整个数字替换为波斯数字?
我想替换我网站上所有页面的所有数字.

码:

function ta_persian_num($string) {
  //arrays of persian and latin numbers
  $persian_num = array('?', '?', '?', '?', '?', '?', '?', '?', '?', '?');
  $latin_num = range(0, 9);

  $string = str_replace($latin_num, $persian_num, $string);

  return $string;
}
Run Code Online (Sandbox Code Playgroud)

我的代码适用于客户端:

<script>
    $(document).ready(function(){
    persian={0:'?',1:'?',2:'?',3:'?',4:'?',5:'?',6:'?',7:'?',8:'?',9:'?'};
    function traverse(el){
        if(el.nodeType==3){
            var list=el.data.match(/[0-9]/g);
            if(list!=null && list.length!=0){
                for(var i=0;i<list.length;i++)
                    el.data=el.data.replace(list[i],persian[list[i]]);
            }
        }
        for(var i=0;i<el.childNodes.length;i++){
            traverse(el.childNodes[i]);
        }
    }
    traverse(document.body);
});
</script>
Run Code Online (Sandbox Code Playgroud)

php

7
推荐指数
1
解决办法
356
查看次数

在PHP中替换表情符号的更好方法?

现在我正在使用此函数表情符号:

function emoticons($text) {
        $icons = array(
                ':)'    =>  '<img src="/images/blank.gif" alt="smile" class="icon_smile" />',
                ':-)'   =>  '<img src="/images/blank.gif" alt="smile" class="icon_smile" />',
                ':D'    =>  '<img src="/images/blank.gif" alt="smile" class="icon_laugh" />',
                ':d'    =>  '<img src="/images/blank.gif" alt="laugh" class="icon_laugh" />',
                ';)'    =>  '<img src="/images/blank.gif" alt="wink" class="icon_wink" />',
                ':P'    =>  '<img src="/images/blank.gif" alt="tounge" class="icon_tounge" />',
                ':-P'   =>  '<img src="/images/blank.gif" alt="tounge" class="icon_tounge" />',
                ':-p'   =>  '<img src="/images/blank.gif" alt="tounge" class="icon_tounge" />',
                ':p'    =>  '<img src="/images/blank.gif" alt="tounge" class="icon_tounge" />',
                ':('    =>  '<img src="/images/blank.gif" alt="sad face" class="icon_sad" />',
                ':o'    => …
Run Code Online (Sandbox Code Playgroud)

php strtr emoticons

6
推荐指数
1
解决办法
1万
查看次数

如何在Xcode 7和Swift 2中创建一个圆角矩形标签

我在Xcode 7 beta 3工作.我想创建一个带圆角矩形背景的标签.默认情况下,我可以使用我选择的颜色创建背景,但我无法绕过角落.我已经尝试为该标签创建一个插座,然后viewDidLoad()我写了这段代码label.layer.cornerRadius = 10.我没有得到任何错误,但它没有改变模拟器中的标签.有没有人知道如何在Swift 2中这样做?

user-interface xcode rounded-corners ios swift

6
推荐指数
2
解决办法
1万
查看次数

如何在一个请求中上传多个文件?

我要将多个图像上传到服务器.

这是DataURL的数组.

items: {
    img_url : string
}[] = [];
Run Code Online (Sandbox Code Playgroud)

我发现离子原生文件传输只能上传一个文件.

我如何上传多个文件?

javascript node.js typescript ionic3 angular

6
推荐指数
1
解决办法
2182
查看次数