在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問答
誮惜顏 回答

來自 http://www.ridgesolutions.ie/...

編譯 pcre

cd /home/youruser
mkdir buid_pcre
cd build_pcre

wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.21.tar.gz
tar -xzf pcre-8.21.tar.gz

cd pcre-8.21

./configure --host=arm-linux-gnueabi CC=arm-linux-gnueabi-gcc \
    AR=arm-linux-gnueabi-ar STRIP=arm-linux-gnueabi-strip \
    RANLIB=arm-linux-gnueabi-ranlib \
    --prefix=/home/youruser/build_lighttpd/build_pcre/_install

make
make install

編譯 lighttpd

cd /home/youruser
mkdir build_lighttpd
cd build_lighttpd

wget http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.32.tar.gz

tar -zxvf lighttpd-1.4.32.tar.gz

cd lighttpd-1.4.32

./configure -prefix=/home/youruser/build_lighttpd/_install \ 
    -host=arm-linux-gnueabi CC=arm-linux-gnueabi-gcc \
    RANLIB=arm-linux-gnueabi-ranlib STRIP=arm-linux-gnueabi-strip\
    --enable-shared --without-mysql --without-zlib --without-bzip2 \
    --disable-ipv6 \
    PCRECONFIG=/home/youruser/build_lighttpd/build_pcre/_install/bin/pcre-config \
    PCRE_LIB=/home/youruser/build_lighttpd/build_pcre/_install/lib/libpcre.a \
    CFLAGS="$CFLAGS -DHAVE_PCRE_H=1 -DHAVE_LIBPCRE=1 -I/home/youruser/build_lighttpd/build_pcre/_install/include"

make
make install
傻丟丟 回答

你的 origin 是不是 fork 的?

你說你在服務(wù)器上 pull,然后出現(xiàn)這個(gè)提示的也是在服務(wù)器上?那你看看服務(wù)器上的 origin 指向的是什么先。。git remote -v 看看輸出

如果你是 fork 的,而你又沒 push 過,那你直接 push 一下就好了

有你在 回答
  1. jssdk用的是1.0.0版本,建議升到1.2.0以上,否則iOS會(huì)有潛在的兼容問題
  2. timestamp項(xiàng)的值不是個(gè)字符串,而是一個(gè)大整數(shù)
雨蝶 回答

翻墻找到了:
如果npm uninstall -g yarn之后,yarn還是可用,可以嘗試手動(dòng)刪除(Mac OSX)

rm -rf /usr/local/lib/node_modules/yarn
rm -rf /usr/local/bin/yarn yarnpkg

野橘 回答

vscode的在菜單->查看->集成終端,可以打開終端(小黑框)。

webstorm應(yīng)該是自帶了服務(wù)器功能,所以可以看到訪問路徑。
vscode目前沒有這種功能,需要自己配置,比如你用vue-cli生成的項(xiàng)目,默認(rèn)就帶了(是webpack-dev-server),訪問路徑是localhost:8080,端口可以自己改,在項(xiàng)目/config/index.js下,port: 8080,改成你想要的

做不到 回答

謝謝上面兩位的回答。但是兩位的方法我都實(shí)踐過了,都是不行呢。
所以我直接加了這個(gè)方法暴力改變寬度了

            changeWidth(){
                let element = document.querySelector("#elDialog>.el-dialog")
                element.style.width = '1500px'
            },

因?yàn)橛胻his.$refs.elDialog綁定的elementUI組件的話,
直接 this.$refs.elDialog.style.width = '1500px' 的權(quán)限是不夠高的,就是說雖然能改變,但是是無法展示。

如果用this.$refs.elDialog.width = '1500px'的話,由于我是用的區(qū)域是數(shù)據(jù)父組件(相對于elementUI的dialog組件來說,這里嵌套了很多層了),所以是無法直接改變子組件的數(shù)據(jù)的。

奧特蛋 回答

哇,我貌似理解錯(cuò)你的意思。我再給你看一遍

厭惡我 回答

當(dāng)然可以呀,不然瀏覽器自帶的書簽功能如何實(shí)現(xiàn)的?這個(gè)你應(yīng)該需要讀取html文檔,獲取<head></head>中的icon圖片。例如segmentFault的icon的就在:

<head>
<link rel="shortcut icon" >
</head>
薄荷綠 回答

還是分三個(gè)項(xiàng)目來做比較好,然后通關(guān)url進(jìn)行跳轉(zhuǎn)

陌南塵 回答

后臺(tái)出一個(gè)“代理”,然后用 https://代理?url=訪問的URL,然后通過服務(wù)器端進(jìn)行轉(zhuǎn)發(fā)請求。(類似在線翻譯網(wǎng)頁的功能)
把取回來的HTML內(nèi)容 追加到當(dāng)前DOM

淺淺 回答

使用對象的方式傳參:

function minus_num(obj) {
  obj.num -= 1
}

var obj = {num: 10};
var a = 10

while (obj.num > 0){
  minus_num(obj)
}

console.log(a, obj) 
純妹 回答

你的要求是?
1、獲取到 table 最后兩個(gè) td 的值。
2、將這兩個(gè)值保存在粘貼板中,以便復(fù)制。

<table border="1">
  <tr>
    <td>123</td>
    <td>111</td>
  </tr>
  <tr>
    <td>123</td>
    <td>111</td>
  </tr>
  <tr>
    <td>222</td>
    <td>333</td>
  </tr>
</table>
<input type="button" value="復(fù)制" onclick="copy()" />

<br />
<p>點(diǎn)擊復(fù)制后在下邊 textarea 中 CTRL+V 看一下</p>
<textarea cols="30" rows="10"></textarea>

<script>
  function copy() {
    let values = [...document.querySelectorAll('table tr:last-child td')].map(t => t.innerHTML);
    /* 相當(dāng)這樣:
    var values = [];
    var tds = document.querySelectorAll('table tr:last-child td');
    for (var i=0; i< tds.length; i++) {
      values.push(tds[i].value);
    }
    */
    let input = document.createElement('input');
    document.body.appendChild(input);
    input.value = values.join('+');
    input.focus();
    input.setSelectionRange(0, input.value.length);
    document.execCommand('copy', true);
    document.body.removeChild(input);
  }
</script>
尐懶貓 回答

openweb怎么寫,空白應(yīng)該是404了

你給有路由跳轉(zhuǎn)的組件都取一個(gè)name值,把這個(gè)值在配置路由的時(shí)候放在自定義屬性上,根據(jù)當(dāng)前路由確定name值,然后this.$refs.name獲取

綰青絲 回答

antd 的button不是有個(gè)loading prop嗎,通過hasPolled控制loading應(yīng)該就可以了

情已空 回答

可以試試precommit鉤子

1、只有文件名,沒有路徑當(dāng)然讀不到你的配置文件了。除非你的文件和讀文件的類放在一個(gè)文件夾下。
2、你用Properties去讀source.conf, 而source.conf看上去根本不是.properties格式的,即便找到了讀取也會(huì)注定失敗的。