第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

將 Canvas 應(yīng)用到我的 Vue.js 項(xiàng)目時(shí)出錯(cuò)

將 Canvas 應(yīng)用到我的 Vue.js 項(xiàng)目時(shí)出錯(cuò)

我想獲取我的 vue.js 項(xiàng)目的屏幕截圖。因此我將它用于 html2canvas。我使用以下步驟來(lái)應(yīng)用 html2canvas。第 1 步-:將“html2canvas”安裝到我的項(xiàng)目中npm install html2canvas步驟2-:在我的項(xiàng)目代碼中導(dǎo)入html2 canvas。項(xiàng)目代碼-:<template>  <div class="hello">    <div id="photo">      <p>This is vue screenshor</p>    </div>    <button v-on:click="screenshot">Take Picture</button>  </div></template><script>//import html2canvas from 'vue-html2canvas';import html2canvas from 'html2canvas';export default {  name: 'HelloWorld',  data () {    return {      msg: 'Welcome to Your Vue.js App'    }  },  methods:{    screenshot(){      console.log('Function Screenshot');    html2canvas(document.getElementById('photo')).then(canvas => {      document.body.appendChild(canvas)    });    }  }}</script>但我正在運(yùn)行這個(gè)項(xiàng)目,它給出以下錯(cuò)誤 -:ReferenceError: html2canvas is not defined我如何解決這個(gè)問題?
查看完整描述

1 回答

?
慕標(biāo)琳琳

TA貢獻(xiàn)1830條經(jīng)驗(yàn) 獲得超9個(gè)贊

我解決了這個(gè)錯(cuò)誤。從“html2canvas”中刪除導(dǎo)入語(yǔ)句并按如下方式更改我的功能


 screenshot(){

      const html2canvas = require('html2canvas');

      console.log('Function Screenshot');

      html2canvas(document.getElementById('photo')).then(function(canvas){

        document.body.appendChild(canvas)

     });

 }


查看完整回答
反對(duì) 回復(fù) 2023-07-20
  • 1 回答
  • 0 關(guān)注
  • 142 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)