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

鍍金池/ 問答/ HTML問答

你的PHP版體是多少,PHP好多庫 很長時(shí)間沒有更新,在新版PHP下,很容易出現(xiàn)各種錯(cuò)誤

http://pecl.php.net/package/vld

看了一個(gè),你還在用vld-0.10.1 哪是0.10.1 2010-04-13 發(fā)布的,
用最新的吧
0.14.0 2016-12-18

生性 回答

提取公共方法

$(".menu_her").click(function(){
    click("menu_her");
});

$(".menu_service").click(function(){
    click("menu_service");
});

function click(evt){
    $("."+evt).slideToggle();
  if($("."+evt).text().indexOf("right")==-1){
    $("."+evt+" .material-icons").text('chevron_right');
  }else{
    $("."+evt+" .material-icons").text('expand_more');
  }
};
吢涼 回答
Object.getOwnPropertyNames() 返回一個(gè)數(shù)組,該數(shù)組對元素是 obj自身擁有的枚舉或不可枚舉屬性名稱字符串。 數(shù)組中枚舉屬性的順序與通過 for...in 循環(huán)(或 Object.keys)迭代該對象屬性時(shí)一致。數(shù)組中不可枚舉屬性的順序未定義。
柚稚 回答

params:/article/:id ,/article/123,/article/789 ,這里的id叫做params;

query:/article?id=123 ,/article?id=456 ,這里的id叫做query;

獲取路由中參數(shù):

$route.params

類型: Object
一個(gè) key/value 對象,包含了 動(dòng)態(tài)片段 和 全匹配片段,如果沒有路由參數(shù),就是一個(gè)空對象。

$route.query

類型: Object

一個(gè) key/value 對象,表示 URL 查詢參數(shù)。例如,對于路徑 /foo?user=1,則有 $route.query.user == 1,如果沒有查詢參數(shù),則是個(gè)空對象
離殤 回答

swiper的所有基礎(chǔ)演示都在這,我都是復(fù)制官方代碼改的

http://www.swiper.com.cn/demo...

傻叼 回答

@眼星 你這個(gè)解決了嗎 我的也是video無法在Safari瀏覽器播放 我的只是PC端

舊酒館 回答

已經(jīng)解決 其實(shí)不是這個(gè)意思 沒說明白

獨(dú)白 回答

打包的時(shí)候把sourceMap關(guān)掉。
/config/index.js

build: {
    ...
    productionSourceMap: false
    ...
}
我甘愿 回答

初始化問題
因?yàn)檫€沒有取到值
頁面先渲染
對象里面的屬性沒有值得話會(huì)返回undefined;
你說的深層次數(shù)據(jù)化的話 就是指的undefined;
undefined的是沒有屬性的話會(huì)報(bào)錯(cuò);
vue里面是一直監(jiān)聽頁面;
當(dāng)你取到所有數(shù)據(jù)的時(shí)候,也就會(huì)渲染頁面了;
但是報(bào)錯(cuò)是你沒有取到數(shù)據(jù)的時(shí)候顯示的;

真難過 回答

<html> <head> <meta charset="utf-8"> <title></title> <style
type="text/css"> .outer{

            width: 300px;
            height: 200px;
            background-image: url(http://placekitten.com/350/200);             }             .inner:before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            background-image: radial-gradient(circle at 0 50% ,transparent 0%, transparent 50px,blue 50px, blue 100%);             }             .inner{
            position: relative;
            height: inherit;             }             .inner:after{
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: radial-gradient(circle at 100% 50% ,transparent 0%, transparent 50px,blue 50px, blue 100%);             }         </style>     </head>
<body>         <div class="outer">             <div class="inner"></div>         </div>
</body> </html>

效果如圖
圖片描述

雨蝶 回答
flush public abstract void flush() throws IOExceptionFlush
Flush the stream. If the stream has saved any characters from the various write() methods in a buffer, write them immediately to their intended destination. Then, if that destination is another character or byte stream, flush it. Thus one flush() invocation will flush all the buffers in a chain of Writers and OutputStreams.
The method may be invoked indirectly if the buffer size is exceeded.

Once a stream has been closed, further write() or flush() invocations will cause an IOException to be thrown.

可能是字符串超出緩存區(qū)了,自己算算,在合適的地方調(diào)用out.flush()吧.

拼的參數(shù) 意思是 該css-loader模塊下面的 styles.css

爆扎 回答

babel-plugin-transform-vue-jsx 的 example 中找到了答案,可以這樣寫:

<MyComponent visible={this.visible} {...{on:{'update:visible': console.log}}} />
心夠野 回答

哦哦哦。。。

你可以先暫存自己的代碼
git stash
git pull origin master
git stash pop