小编Vic*_*uiz的帖子

Google地图显示"仅用于开发目的"

当我尝试在我的网页中显示时,Google地图会显示"仅用于开发目的"的消息:

在此输入图像描述

我怎么能让这条消息消失?

我的代码是这样的:

  <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
  <script type="text/javascript">
     function initialize() {  
     var myLatlng = new google.maps.LatLng(50.5792659,8.6744471);
     var centerMap = new google.maps.LatLng(50.5792659,8.6744471);
     var div = document.getElementById('map');
Run Code Online (Sandbox Code Playgroud)

然后我有

     '<p><a href="https://www.google.com/maps/dir//50.5792659,8.6744471/@50.579266,8.674447,16z" target="_blank">Route berechnen</a></p>'+
Run Code Online (Sandbox Code Playgroud)

我没有看到此消息的来源.

google-maps google-maps-api-3

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

如何在div中的表中添加水平滚动条?

如何将水平滚动条添加到div内的表格?这有CSS解决方案吗?

html css html5 html-table css3

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

视频标记无法在Chrome上运行

我正在使用Chrome中的设备指标覆盖来测试针对较小分辨率的响应式网站(在这种情况下为320x480).

在这种情况下,我的视口元标记对页面没有任何影响.徽标看起来很小,而且我完全不可读.或多或少,我会说我看到的一切都在.5级.

这是我的HTML头:

<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/mediaqueries.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" / >
<!--[if lte IE 8]>
    <style>
    .wrapper {min-width: 960px; padding: 0 10px;}
    .hovertext {background: #ccc;}
    </style>
<![endif]-->

<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.0.6-development-only.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
Run Code Online (Sandbox Code Playgroud)

这确实适用于其他人的网站....我不知道我做错了什么...

html viewport responsive-design

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

无法再访问Wordpress管理面板

我无法再访问Wordpress站点的管理面板.2天前我添加了一个插件,加载了一些新内容,一切正常.客户端加载了一些常规博客帖子,今天它已经不再适用了.

首先,错误本身:

我转到URL:,mydomain.com/wp-admin浏览器重定向到:mydomain.com/wp-login.php?redirect_to=http%3A%2F%2Fmydomain.com%2Fwp-admin%2F&reauth=1

错误消息说:

未找到

在此服务器上找不到请求的URL /mother/18/readf.php.

此外,尝试使用ErrorDocument处理请求时遇到404 Not Found错误.

到目前为止我所知道的:

有人遇到过这个问题吗?关于我接下来可以寻找什么的任何想法?

php wordpress

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

Bootstrap 4 Roboto字体家族

我是Bootstrap的新手,我在本地安装了4.1.1版本(node.js,npm,gulp和sass)。

抱歉,这是一个愚蠢的问题,但是我是否必须从Google导入Roboto字体系列,或者Bootstrap已经导入了该字体?我不想添加任何多余的CSS。

谢谢!鲍勃:)

html webfonts bootstrap-4

2
推荐指数
2
解决办法
4482
查看次数

类型不匹配时出错

我在SML上写这个函数.它应该列出可能的名字变体(我的名字是Victoria,所以V,Vic,Vicky等)并创建{altname1,middle,last},{alt2,middle,last}的记录.

所以这是我的代码:

fun similar_names (substits:, name) = 
    let 
    val {first=n1, second=n2, third=n3} = name
    fun name_constructor (altnames:string list, acc) =
        case altnames of 
        [] => acc
         |  a::aa  => {first=a, second=n2, third=n3}::acc
    in 
    name_constructor( get_substitutions2(substits, n1),name)

    end
Run Code Online (Sandbox Code Playgroud)

get_substitutions2只会给出一个名字的所有可能变体的列表(即:字符串列表),并且它可以工作.

我得到的错误是:

a02.sml:65.2-65.58 Error: operator and operand don't agree [tycon mismatch]
  operator domain: string list * {first:string, second:'Z, third:'Y} list
  operand:         string list * {first:string, second:'Z, third:'Y}
  in expression:
    name_constructor (get_substitutions2 (substits,n1),name)
Run Code Online (Sandbox Code Playgroud)

我不明白为什么它只在记录列表和记录之间进行.你能帮忙吗?

functional-programming ml sml pattern-matching

0
推荐指数
1
解决办法
262
查看次数

打印返回的PHP数组不起作用

我一直致力于递归函数,以便从几个级别的子类别到类别获取面包屑信息.我能够检索这个信息,但是一旦我用这个函数返回一个数组数组,我就不能用print_r来查看内容.

在我咆哮之前,让我告诉你代码:

function breadcrumb_array ($id, $breadcrumb = array())  {
    $cat_info = get_subcat_data($id);
    if ($cat_info["parent_id"]>0) {
        $breadcrumb[] = $cat_info;
        breadcrumb_array($cat_info["parent_id"], $breadcrumb);
    } else {
        echo "About to return the value...";
        //print_r(array_reverse($breadcrumb)); 
        return array_reverse($breadcrumb);
    }
}
$breadcrumb = breadcrumb_array(8);
print_r($breadcrumb);
Run Code Online (Sandbox Code Playgroud)

如果我print_r(...)在函数中取消注释,它将正确地调出数组:

( [0] => Array 
    ( [id] => 3
      [nombre] => Muebles
      [parent_id] => 1
      [parent_urlname] => 
      [parent_nombre] => Productos
    )
  [1] => Array
    ( [id] => 6
      [nombre] => Sillas
      [parent_id] => 3
      [parent_urlname] =>
      [parent_nombre] => Muebles
    ) …
Run Code Online (Sandbox Code Playgroud)

php arrays

0
推荐指数
1
解决办法
173
查看次数