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

鍍金池/ 問(wèn)答
萌面人 回答

.itemposition: fixed;去掉就居中了

忘了我 回答

在手機(jī)端 獲取到的是邏輯分辨率的寬度window.screen.width

物理分辨率, window.screen.width * window.devicePixelRatio

夏夕 回答

可以給圖片綁定@click="goUrl(idx)" 在methods中注冊(cè)goUrl方法,根據(jù)傳入的idx分別配置對(duì)應(yīng)的鏈接

玄鳥(niǎo) 回答

關(guān)于 sidebar 和 header 最好通過(guò) vuex 管理狀態(tài)

殘淚 回答

1.如果是圖形界面,可以右鍵查看屬性

2.可以在該文件目錄下使用命令: ls -al

3.如果是root用戶,可直接將文件目錄改成需要的權(quán)限: chmod 777 /root/yourdir or file.

----來(lái)自百度

朕略萌 回答

好了,在開(kāi)發(fā)工具上跟實(shí)機(jī)上是不一樣的,手機(jī)上看是沒(méi)問(wèn)題的

初念 回答

請(qǐng)使用headless chrome

好難瘦 回答

`$.ajax({

url:"http://localhost:3333/audio",
type:"post",

}).done(res=>{

const blob = new Blob([res],{type:"audio/mp3"});
const blobUrl = URL.createObjectURL(blob);
const audio = new Audio(blobUrl);
audio.play();

});`

以上答案從我對(duì)其他的問(wèn)題拷貝過(guò)來(lái)的,原理是一樣的。以音頻為例 type換成你的文件類型 比如pdf就是application/pdf
url換成你自己的

主要知識(shí)點(diǎn)就是blob和URL.createObjectUR

執(zhí)念 回答

clipboard.png
不管你原來(lái)的port端口是多少,現(xiàn)在改成8080試試

我以為 回答

this.$set(this.list,i,true) 是這么寫(xiě)

絯孑氣 回答

A:

window.addEventListener('storage', function (e) {
  console.log(e.key)
  console.log(e.value)
})

B:

localStorage.setItem('hello', 'world')

什么格式的音頻文件?比特率多少?懷疑是超低比特率的問(wèn)題,比如8kbps的acc文件

逗婦乳 回答

在vue官方文檔的深入響應(yīng)式原理一節(jié)有相關(guān)的解釋https://cn.vuejs.org/v2/guide...

watch是異步的,promise.all是同步代碼,所以當(dāng)然會(huì)在watch前執(zhí)行
promise.all放入this.$nextTick()中也許可以幫助你解決問(wèn)題。

熟稔 回答

border設(shè)置顏色,content設(shè)置成透明色,不知這樣行不行

命于你 回答

Vue.set( vm, data, {...bill})

傻丟丟 回答

var arr = ["19998321312.jpg","19998321312.jpg","19998321312.jpg","19998321312.jpg","19998321312.jpg","19998321312.jpg","19998321312.jpg"]
function arrimg() {

var arr2 = [];
 arr.forEach(function(ele,index){  
    arr2.push(arr[index].split('.').join('_'+parseInt(index+1)+'.'));  
  });  
return arr2;

}

裸橙 回答

配置下路由
Route::rule('domain/:arg1/:arg2','domain/platform/controller/method');

具體參考:
https://www.kancloud.cn/manua...

網(wǎng)妓 回答

echarts中可以寫(xiě)個(gè)輔助bar “頂起來(lái)”

圖片描述

var data = [2900, 1000, 1400, 1200, 300, 230]

function iData (data) {
    let max = Math.max.apply(null,data)
    console.log(max)
    let iData = data.map((item) => {
        return max - item /2
    })
    return iData
}


option = {
    title: {
        text: '深圳月最低生活費(fèi)組成(單位:元)',
        subtext: 'From ExcelHome',
        sublink: 'http://e.weibo.com/1341556070/AjQH99che'
    },
    tooltip : {
        trigger: 'axis',
        axisPointer : {            // 坐標(biāo)軸指示器,坐標(biāo)軸觸發(fā)有效
            type : 'shadow'        // 默認(rèn)為直線,可選為:'line' | 'shadow'
        },
        formatter: function (params) {
            var tar = params[1];
            return tar.name + '<br/>' + tar.seriesName + ' : ' + tar.value;
        }
    },
    grid: {
        left: '3%',
        right: '4%',
        bottom: '3%',
        containLabel: true
    },
    xAxis: {
        type : 'category',
        splitLine: {show:false},
        data : ['總費(fèi)用','房租','水電費(fèi)','交通費(fèi)','伙食費(fèi)','日用品數(shù)']
    },
    yAxis: {
        type : 'value'
    },
    series: [
        {
            name: '輔助',
            type: 'bar',
            stack:  '總量',
            itemStyle: {
                normal: {
                    barBorderColor: 'rgba(0,0,0,0)',
                    color: 'rgba(0,0,0,0)'
                },
                emphasis: {
                    barBorderColor: 'rgba(0,0,0,0)',
                    color: 'rgba(0,0,0,0)'
                }
            },
            data: iData(data)
        },
        {
            name: '生活費(fèi)',
            type: 'bar',
            stack: '總量',
            label: {
                normal: {
                    show: true,
                    position: 'inside'
                }
            },
            data:data
        }
    ]
};