小编A1G*_*ard的帖子

列是IE 8中的全宽 - Css引导程序

我在我的网页中使用bootstrap 3.0.3并添加html5shiv lib并响应lib以解决此问题,但它无法在Internet Explorer 8上运行.

我的HTML代码:

<div class="container">
    <div class="row">
        <div class="col-sm-4" style="background:red;">&nbsp;</div>
        <div class="col-sm-4" style="background:green;">&nbsp;</div>
        <div class="col-sm-4" style="background:blue;">&nbsp;</div>
    </div>
</div>
Run Code Online (Sandbox Code Playgroud)

它在FF和Webkits浏览器中运行良好但导致IE:

在此输入图像描述

现在演示在这里,我该如何解决?

css internet-explorer internet-explorer-8 twitter-bootstrap twitter-bootstrap-3

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

Delphi中的关联数组,带字符串键的数组是否可行?

如果您使用php,您可以在编程语言中看到php具有关联数组(或数组宽度字符串键).例如:

$server['hostname']  =  'localhost';
$server['database']  =  'test';
$server['username']  =  'root';
$server['password']  =  'password' ;    

// 2d array
$all['myserver']['hostname'] = 'localhost' ;
Run Code Online (Sandbox Code Playgroud)

但是在delphi中找不到任何默认的使用关联数组的方法.

首先,我希望找到任何输出组件或类的默认方式.第二,如果真的我无法用内部方式找到我强制只选择输出类.

我使用Delphi XE3,非常感谢您的帮助.

编辑:我在这里找到了一个类:http://www.delphipages.com/forum/showthread.php?t=26334 与php相同,但有更好的方法吗?

arrays delphi key associative delphi-xe3

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

如何通过 PM2 运行“npm start”?

我在这里看到了很多问题,但这对我不起作用。那为什么要问这个问题?

我正在使用 DigitalOcean Ubuntu 16.04 服务器。我有一个由“npm start”运行的节点项目。

脚本是:

"scripts": {    
    "start": "node ./bin/www"
}
Run Code Online (Sandbox Code Playgroud)

一般pm2为

pm2 start app.js
Run Code Online (Sandbox Code Playgroud)

由于我的脚本是这样的,并且通过npm start如何永远运行我的服务器来运行。

node.js pm2

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

同步线程进行图像处理Delphi

我必须处理主要形式的一个图像,但处理速度低inc速度我使用线程...

我的线程代码:

type
  TPaintThread = class(TThread)
    Source,Mask :TBitmap ;
    image : TImage;
    public
       procedure SetAll(src,msk:TBitmap;img:TImage);
    private
     procedure  DoWritePix;
    var
       mBit : TBitmap ;

    protected
      procedure Execute; override;
  end;

implementation

procedure TPaintThread.SetAll(src: TBitmap; msk: TBitmap; img: TImage);
begin
      Source := src ;
      mask := msk ;
      img := img ;
      mBit := TBitmap.Create ;
end;

procedure TPaintThread.DoWritePix;
begin
  image.Picture.Bitmap := mBit ;
end;

procedure TPaintThread.Execute;
var
    i: Integer;
    j: Integer;
begin
  mBit.Width := Source.Width ;
  mBit.Height := Source.Height ;
  for i …
Run Code Online (Sandbox Code Playgroud)

delphi multithreading synchronization tthread delphi-xe3

3
推荐指数
1
解决办法
990
查看次数

webpack和vuejs将组件包含到组件中

我正在使用webpack和vuejs。

但是,当我尝试在其他组件中添加某些组件时,我做不到。

例如rounter/index.js

import Vue from 'vue'
import Router from 'vue-router'
import HelloWorld from '@/components/HelloWorld'
import Tools from '@/components/Tools' 
//import toolsmenu from '@/components/toolsmenu' 


export default new Router({
  routes: [
    {
      path: '/',
      name: 'HelloWorld',
      component: HelloWorld
    },
    {
      path: '/Tools',
      name: 'Tools',
      component: Tools
    }
  ]
})
Run Code Online (Sandbox Code Playgroud)

然后在组件文件夹中:HelloWorldToolstoolsmenu

Tools.vue:

<template>
    <div>
       <toolsmenu></toolsmenu>
       my code
    </div>
</template>
<script>
    export default {
        name: 'Tools'
    }
</script>
Run Code Online (Sandbox Code Playgroud)

toolsmenu.vue:

<template>
    <ul>
        <li> <a href="#"> index </a> …
Run Code Online (Sandbox Code Playgroud)

webpack vue.js vue-component

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

使用时编译错误以其他形式声明公共变量

我之前声明了许多公共变量,但在Delphi-XE3中是第一个.

我声明公共var好,但不能在其他表格上使用它,但我不知道为什么?

我的主要联合代码:

unit uMian;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls;

type
  TForm1 = class(TForm)
    btnLoad: TButton;
    btnShow: TButton;
    btnEaxit: TButton;
    lvStudent: TListView;
    btnAdd: TButton;
    procedure btnEaxitClick(Sender: TObject);
    procedure btnLoadClick(Sender: TObject);
    procedure FormClose(Sender: TObject; var Action: TCloseAction);
    procedure btnAddClick(Sender: TObject);
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations } 
  var
    IsOpen : Boolean ;

  public
    { Public declarations }
    var
      myvar : Integer ;
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses uAdd;


function …
Run Code Online (Sandbox Code Playgroud)

delphi variables public delphi-xe3

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