VueJS 구성 요소에 외부 JS 스크립트를 추가하는 방법


151

지불 게이트웨이에 두 개의 외부 스크립트를 사용해야합니다. 지금은 둘 다 index.html파일에 저장됩니다. 그러나 처음에는 이러한 파일을로드하고 싶지 않습니다. 결제 게이트웨이는 사용자가 특정 구성 요소를 열 때에 만 필요합니다 ( using router-view).

어쨌든 이것을 달성 할 수 있습니까?


당신 /public/index.html은 그것을 할 수 있습니까?
user3290525

답변:


239

이를 해결하는 간단하고 효과적인 방법은 외부 스크립트를 mounted()구성 요소 의 뷰에 추가하는 것 입니다. 나는 당신을 설명 할 것이다 구글에서 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

15
추가 recaptchaScript.async = true머리에 추가하기 전에.
Joe Eifert

6
recaptchaScript.defer = true또한 사람이 적합 할 수있다
Tarasovych

3
이것은 vue가 단일 파일 구성 요소 프레임 워크이기 때문에 가장 좋은 대답입니다. 현재 compnent 파일이 매우 큰 경우를 제외하고 내가 결정하기 전에) (설치 및 / 또는 beforeMount () 스크립트 태그의 섹션 ... beforeMount를 참조하십시오 () 기능 functionto을 추가 제안 vuejs.org/v2/api/#beforeMount을
Kyle Joeckel

1
이론적으로 @KeisukeNagakawa. 이 답변보기 stackoverflow.com/questions/1605899/…
Jeff Ryan

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 loader를 사용하면 다음과 같이 할 수 있습니다

구성 요소를 만들기 전에 외부 스크립트가로드 될 때까지 기다리므로 구성 요소에서 globar vars 등을 사용할 수 있습니다

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 ( https://github.com/vuejs-templates/webpack ) 용 Webpack 시작 템플릿 중 하나를 사용하고 있습니까? 이미 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
이 스크립트는 페이팔과 스트라이프에서 온 것입니다. 파일을 로컬에 다운로드 할 수 없습니다
Gijo Varghese

2
이 랩퍼가 문제점을 해결합니까? github.com/matfish2/vue-stripegithub.com/khoanguyen96/vue-paypal-checkout
ba_ul

절름발이 대답 ... 왜 vue 로더가 필요한지에 대한 설명을 제공합니다
Kyle Joeckel

6

뷰 헤드를 사용할 수 있습니다 패키지를 스크립트 및 기타 태그를 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 스토어를 사용했을 때의 이점 또는 차이점은 무엇입니까?
Kyle Joeckel

6

외부 js 스크립트를 vue.js 컴포넌트 템플리트에 임베드하려는 경우 다음을 수행하십시오.

다음 과 같이 외부 자바 스크립트 포함 코드 를 구성 요소 에 추가하고 싶었습니다 .

<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속성을 알 수 있습니다 . Kyle이 더 많은 비디오를 보고 싶다면


4

약속 기반 솔루션으로 필요한 스크립트를로드 할 수 있습니다.

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
스크립트가로드되면 이미 메모리에 있습니다. 돔에서 제거해도 발자국이 제거되지 않습니다.
danbars

1

vue-loader 를 사용하여 구성 요소를 자체 파일 (단일 파일 구성 요소)로 코딩 할 수 있습니다 . 이를 통해 구성 요소별로 스크립트와 CSS를 포함시킬 수 있습니다.


4
이 스크립트는 페이팔과 스트라이프에서 온 것입니다. 파일을 로컬에 다운로드 할 수 없습니다
Gijo Varghese

1
링크가 끊어졌습니다
Roberto

외부 스크립트를 다운로드하고 소스를보고 자신의 파일에 복사 / 붙여 넣기를 할 수 있습니다.
minimallinux

1
@minimallinux Stripe 및 Paypal의 경우 PCI-DSS를 위반합니다. 그러지 마
던컨 존스

0

가장 간단한 해결책은 index.htmlvue 프로젝트 파일에 스크립트를 추가하는 것입니다

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.