外部JSスクリプトをVueJSコンポーネントに追加する方法


150

支払いゲートウェイには2つの外部スクリプトを使用する必要があります。現在、両方がindex.htmlファイルに入れられています。ただし、これらのファイルを最初にロードしたくありません。支払いゲートウェイは、ユーザーが特定のコンポーネントを開いたときにのみ必要です(using router-view)。

とにかくこれを達成する方法はありますか?


あなた/public/index.htmlはそれを行うために使用できますか?
user3290525

回答:


239

これを解決する簡単で効果的な方法mounted()は、コンポーネントのビューに外部スクリプトを追加することです。Google Recaptchaスクリプトで説明します。

<template>
   .... your HTML
</template>

<script>
  export default {
    data: () => ({
      ......data of your component
    }),
    mounted() {
      let recaptchaScript = document.createElement('script')
      recaptchaScript.setAttribute('src', 'https://www.google.com/recaptcha/api.js')
      document.head.appendChild(recaptchaScript)
    },
    methods: {
      ......methods of your component
    }
  }
</script>

出典:https : //medium.com/@lassiuosukainen/how-to-include-a-script-tag-on-a-vue-component-fe10940af9e8


22
created()メソッドはドキュメントを取得できません。mounted()代わりに使用してください
Barlas Apaydin 2018年

15
recaptchaScript.async = true頭に追加する前に追加します。
Joe Eifert

6
recaptchaScript.defer = true誰かにも適しているかもしれません
タラソビッチ2018

3
これは、vueが単一のファイルコンポーネントフレームワークであることが意図されているため、間違いなく最良の答えです。あなたの現在のcompnentファイルが非常に大きい場合を除き、私は決定する前に、あなたの)(マウントおよび/またはbeforeMount()スクリプトタグのセクション... beforeMountを参照してください()機能functionto追加することをお勧めvuejs.org/v2/api/#beforeMountを
カイルジョッケル

1
@長川圭佑理論的にはそうですね。この回答を参照してくださいstackoverflow.com/questions/1605899/...
ジェフ・ライアンの

28

カスタムjsファイルとjqueryに付属するHTMLテンプレートをダウンロードしました。これらのjsをアプリに添付する必要がありました。Vueを続行します。

このプラグインが見つかりました。CDNと静的ファイルの両方から外部スクリプトを追加するためのクリーンな方法です https://www.npmjs.com/package/vue-plugin-load-script

// local files
// you have to put your scripts into the public folder. 
// that way webpack simply copy these files as it is.
Vue.loadScript("/js/jquery-2.2.4.min.js")

// cdn
Vue.loadScript("https://maps.googleapis.com/maps/api/js")

これは、それを行うための本当にきちんとした簡単な方法です。私はこの方法が好き
Vixson

25

webpackとvueローダーを使用すると、このようなことができます

コンポーネントを作成する前に外部スクリプトが読み込まれるのを待機するため、コンポーネントでグローバル変数などを使用できます

components: {
 SomeComponent: () => {
  return new Promise((resolve, reject) => {
   let script = document.createElement('script')
   script.onload = () => {
    resolve(import(someComponent))
   }
   script.async = true
   script.src = 'https://maps.googleapis.com/maps/api/js?key=APIKEY&libraries=places'
   document.head.appendChild(script)
  })
 }
},

マウントして使用しました
Oranit Dar

>>「このコードはどこに配置しますか?」:これはvuejsコンポーネントのコンポーネントセクションにあります。
ADM-IT

7

vueのWebpackスターターテンプレート(https://github.com/vuejs-templates/webpack)の1つを使用していますか?すでにvue-loader(https://github.com/vuejs/vue-loader)が設定されています。スターターテンプレートを使用していない場合は、webpackとvue-loaderを設定する必要があります。

次にimport、スクリプトを関連する(単一ファイル)コンポーネントに追加できます。その前に、exportスクリプトからimportコンポーネントに必要なものを取得する必要があります。

ES6のインポート:
- https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import
- http://exploringjs.com/es6/ch_modules.html

〜編集〜
あなたはこれらのラッパーからインポートすることができます:
- https://github.com/matfish2/vue-stripe
- https://github.com/khoanguyen96/vue-paypal-checkout


2
これらのスクリプトは、paypalとstripeからのものです。ローカルでputファイルをダウンロードできない
Gijo Varghese '12 / 07/17

2
これらのラッパーはあなたの問題を解決しますか?github.com/matfish2/vue-stripe およびgithub.com/khoanguyen96/vue-paypal-checkout
ba_ul 2017


6

vue-headパッケージを使用して、スクリプトやその他のタグをvueコンポーネントのヘッドに追加できます。

そのように単純です:

var myComponent = Vue.extend({
  data: function () {
    return {
      ...
    }
  },
  head: {
    title: {
      inner: 'It will be a pleasure'
    },
    // Meta tags
    meta: [
      { name: 'application-name', content: 'Name of my application' },
      { name: 'description', content: 'A description of the page', id: 'desc' }, // id to replace intead of create element
      // ...
      // Twitter
      { name: 'twitter:title', content: 'Content Title' },
      // with shorthand
      { n: 'twitter:description', c: 'Content description less than 200 characters'},
      // ...
      // Google+ / Schema.org
      { itemprop: 'name', content: 'Content Title' },
      { itemprop: 'description', content: 'Content Title' },
      // ...
      // Facebook / Open Graph
      { property: 'fb:app_id', content: '123456789' },
      { property: 'og:title', content: 'Content Title' },
      // with shorthand
      { p: 'og:image', c: 'https://example.com/image.jpg' },
      // ...
    ],
    // link tags
    link: [
      { rel: 'canonical', href: 'http://example.com/#!/contact/', id: 'canonical' },
      { rel: 'author', href: 'author', undo: false }, // undo property - not to remove the element
      { rel: 'icon', href: require('./path/to/icon-16.png'), sizes: '16x16', type: 'image/png' }, 
      // with shorthand
      { r: 'icon', h: 'path/to/icon-32.png', sz: '32x32', t: 'image/png' },
      // ...
    ],
    script: [
      { type: 'text/javascript', src: 'cdn/to/script.js', async: true, body: true}, // Insert in body
      // with shorthand
      { t: 'application/ld+json', i: '{ "@context": "http://schema.org" }' },
      // ...
    ],
    style: [
      { type: 'text/css', inner: 'body { background-color: #000; color: #fff}', undo: false },
      // ...
    ]
  }
})

その他の例については、このリンクを確認してください


vuexストアを使用する場合の利点と違いは何ですか?
カイルJoeckel

6

外部jsスクリプトをvue.jsコンポーネントテンプレートに埋め込もうとする場合は、以下に従ってください。

次のように、コンポーネントに外部JavaScript埋め込みコードを追加したいと思います。

<template>
  <div>
    This is my component
    <script src="https://badge.dimensions.ai/badge.js"></script>
  </div>
<template>

そしてVueは私にこのエラーを示しました:

テンプレートは、状態をUIにマップすることのみを担当します。タグは解析されないため、などの副作用のあるタグをテンプレートに配置しないでください。


私がそれを解決した方法は、追加することでしたtype="application/javascript"jsのMIMEタイプの詳細については、この質問を参照してください):

<script type="application/javascript" defer src="..."></script>


defer属性に気付くでしょう。詳細については、カイルのこのビデオをご覧ください


4

promiseベースのソリューションで必要なスクリプトをロードできます:

export default {
  data () {
    return { is_script_loading: false }
  },
  created () {
    // If another component is already loading the script
    this.$root.$on('loading_script', e => { this.is_script_loading = true })
  },
  methods: {
    load_script () {
      let self = this
      return new Promise((resolve, reject) => {

        // if script is already loading via another component
        if ( self.is_script_loading ){
          // Resolve when the other component has loaded the script
          this.$root.$on('script_loaded', resolve)
          return
        }

        let script = document.createElement('script')
        script.setAttribute('src', 'https://www.google.com/recaptcha/api.js')
        script.async = true

        this.$root.$emit('loading_script')

        script.onload = () => {
          /* emit to global event bus to inform other components
           * we are already loading the script */
          this.$root.$emit('script_loaded')
          resolve()
        }

        document.head.appendChild(script)

      })

    },

    async use_script () {
      try {
        await this.load_script()
        // .. do what you want after script has loaded
      } catch (err) { console.log(err) }

    }
  }
}

これthis.$rootは少しハックなので、グローバルイベントの代わりにvuexまたはeventHubソリューションを使用する必要があります。

上記をコンポーネントにして必要な場所で使用すると、使用時にスクリプトが読み込まれます。


3

これは、このように簡単に行うことができます。

  created() {
    var scripts = [
      "https://cloudfront.net/js/jquery-3.4.1.min.js",
      "js/local.js"
    ];
    scripts.forEach(script => {
      let tag = document.createElement("script");
      tag.setAttribute("src", script);
      document.head.appendChild(tag);
    });
  }

2

クリーンなコンポーネントを維持するには、ミックスインを使用できます。

コンポーネントで、外部ミックスインファイルをインポートします。

Profile.vue

import externalJs from '@client/mixins/externalJs';

export default{
  mounted(){
    this.externalJsFiles();
  }
}

externalJs.js

import('@JSassets/js/file-upload.js').then(mod => {
  // your JS elements 
})

babelrc(インポートでスタックする場合、これを含めます)

{
  "presets":["@babel/preset-env"],
  "plugins":[
    [
     "module-resolver", {
       "root": ["./"],
       alias : {
         "@client": "./client",
         "@JSassets": "./server/public",
       }
     }
    ]
}

2

マウントされたタグを作成するのトップ答えは良いですが、それはいくつかの問題があります:リンクを複数回変更すると、作成タグが何度も繰り返されます。

そこで、これを解決するスクリプトを作成しました。必要に応じてタグを削除できます。

とてもシンプルですが、自分で作成する時間を節約できます。

// PROJECT/src/assets/external.js

function head_script(src) {
    if(document.querySelector("script[src='" + src + "']")){ return; }
    let script = document.createElement('script');
    script.setAttribute('src', src);
    script.setAttribute('type', 'text/javascript');
    document.head.appendChild(script)
}

function body_script(src) {
    if(document.querySelector("script[src='" + src + "']")){ return; }
    let script = document.createElement('script');
    script.setAttribute('src', src);
    script.setAttribute('type', 'text/javascript');
    document.body.appendChild(script)
}

function del_script(src) {
    let el = document.querySelector("script[src='" + src + "']");
    if(el){ el.remove(); }
}


function head_link(href) {
    if(document.querySelector("link[href='" + href + "']")){ return; }
    let link = document.createElement('link');
    link.setAttribute('href', href);
    link.setAttribute('rel', "stylesheet");
    link.setAttribute('type', "text/css");
    document.head.appendChild(link)
}

function body_link(href) {
    if(document.querySelector("link[href='" + href + "']")){ return; }
    let link = document.createElement('link');
    link.setAttribute('href', href);
    link.setAttribute('rel', "stylesheet");
    link.setAttribute('type', "text/css");
    document.body.appendChild(link)
}

function del_link(href) {
    let el = document.querySelector("link[href='" + href + "']");
    if(el){ el.remove(); }
}

export {
    head_script,
    body_script,
    del_script,
    head_link,
    body_link,
    del_link,
}

そして、あなたはこのようにそれを使うことができます:

// PROJECT/src/views/xxxxxxxxx.vue

......

<script>
    import * as external from '@/assets/external.js'
    export default {
        name: "xxxxxxxxx",
        mounted(){
            external.head_script('/assets/script1.js');
            external.body_script('/assets/script2.js');
            external.head_link('/assets/style1.css');
            external.body_link('/assets/style2.css');
        },
        destroyed(){
            external.del_script('/assets/script1.js');
            external.del_script('/assets/script2.js');
            external.del_link('/assets/style1.css');
            external.del_link('/assets/style2.css');
        },
    }
</script>

......

2
スクリプトがロードされると、すでにメモリにあります。domから削除しても、フットプリントは削除されません。
danbars

1

vue-loaderを使用して、コンポーネントを独自のファイル(単一ファイルコンポーネント)にコーディングできます。これにより、コンポーネントベースでスクリプトとCSSを含めることができます。


4
これらのスクリプトは、paypalとstripeからのものです。ローカルでputファイルをダウンロードできない
Gijo Varghese '12 / 07/17

1
リンクが壊れている
Roberto

外部スクリプトのダウンロード、ソースの表示、独自のファイルへのコピー/貼り付けができます。
minimallinux

1
@minimallinux StripeおよびPaypalの場合、これはPCI-DSSに違反します。だからそれをしないでください。
ダンカンジョーンズ

0

最も簡単な解決策は、スクリプトをindex.htmlvue-projectのファイルに追加することです

index.html:

 <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="utf-8">
        <title>vue-webpack</title>
      </head>
      <body>
        <div id="app"></div>
        <!-- start Mixpanel --><script type="text/javascript">(function(c,a){if(!a.__SV){var b=window;try{var d,m,j,k=b.location,f=k.hash;d=function(a,b){return(m=a.match(RegExp(b+"=([^&]*)")))?m[1]:null};f&&d(f,"state")&&(j=JSON.parse(decodeURIComponent(d(f,"state"))),"mpeditor"===j.action&&(b.sessionStorage.setItem("_mpcehash",f),history.replaceState(j.desiredHash||"",c.title,k.pathname+k.search)))}catch(n){}var l,h;window.mixpanel=a;a._i=[];a.init=function(b,d,g){function c(b,i){var a=i.split(".");2==a.length&&(b=b[a[0]],i=a[1]);b[i]=function(){b.push([i].concat(Array.prototype.slice.call(arguments,
    0)))}}var e=a;"undefined"!==typeof g?e=a[g]=[]:g="mixpanel";e.people=e.people||[];e.toString=function(b){var a="mixpanel";"mixpanel"!==g&&(a+="."+g);b||(a+=" (stub)");return a};e.people.toString=function(){return e.toString(1)+".people (stub)"};l="disable time_event track track_pageview track_links track_forms track_with_groups add_group set_group remove_group register register_once alias unregister identify name_tag set_config reset opt_in_tracking opt_out_tracking has_opted_in_tracking has_opted_out_tracking clear_opt_in_out_tracking people.set people.set_once people.unset people.increment people.append people.union people.track_charge people.clear_charges people.delete_user people.remove".split(" ");
    for(h=0;h<l.length;h++)c(e,l[h]);var f="set set_once union unset remove delete".split(" ");e.get_group=function(){function a(c){b[c]=function(){call2_args=arguments;call2=[c].concat(Array.prototype.slice.call(call2_args,0));e.push([d,call2])}}for(var b={},d=["get_group"].concat(Array.prototype.slice.call(arguments,0)),c=0;c<f.length;c++)a(f[c]);return b};a._i.push([b,d,g])};a.__SV=1.2;b=c.createElement("script");b.type="text/javascript";b.async=!0;b.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?
    MIXPANEL_CUSTOM_LIB_URL:"file:"===c.location.protocol&&"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//)?"https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js":"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";d=c.getElementsByTagName("script")[0];d.parentNode.insertBefore(b,d)}})(document,window.mixpanel||[]);
    mixpanel.init("xyz");</script><!-- end Mixpanel -->
        <script src="/dist/build.js"></script>
      </body>
    </html>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.