如何在Vue中编译从外部api加载的模板

时间:2017-07-02 19:56:54

标签: compilation vue.js vue-component

我有一个非SPA网络应用程序,其中包含Vue个组件且效果非常好。但是,我正在寻找一种通过外部API加载包含Vue的HTML的方法。

所以,我只是打电话给/ajax/dialogbox/client/add,它返回包含Vue组件的HTML,例如:

<h1>Add client</h1>
<div>My static content</div>
<my-component></my-component>

但显然<my-component></my-component>没有做任何事情。 在Angular 1我使用$compile服务在输出之前编译HTML。

有没有办法在Vue中做同样的事情?

2 个答案:

答案 0 :(得分:7)

Vue中有一个compile function可用于编译模板以呈现函数。使用已编译的函数需要比您提供的更多细节(例如,如果您需要将返回的模板与数据一起使用),但这是一个示例。

console.clear()

Vue.component("my-component",{
  template: `<h1>My Component</h1>`
})

const template = `
<div>
<h1>Add client</h1>
<div>My static content</div>
<my-component></my-component>
</div>
`

new Vue({
  el: "#app",
  data:{
    compiled: null
  },
  mounted(){
    setTimeout(() => {
      this.compiled = Vue.compile(template)
    }, 500)
    
  }
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.js"></script>
<div id="app">
  <component :is="compiled"></component>
</div>

请注意,在示例中,我将示例模板包装在div标记中。 Vue要求Vue或组件的单个根元素。

答案 1 :(得分:0)

几个小时后,我设法将一些属性传递给要编译的组件。

在HTML正文中:

<!-- some where in the HTML body -->
<div id="vCard2">
   <component :is="compiled"></component>
</div>

<script>
var vmCard2 = new Vue({
  el: '#vCard2',
  data: {
    compiled: null,
    status: ''
  },
  methods: {
    show: function () {
      // macro is some dynamic string content or html template that contains mustache
      var macro = this.status == 'some_switch' ? '...{{payment.status}}...' : '...{{refund.status}}...';
      Vue.component('cp-macro', {
        data: function () {
          return {
            payment: vmCard1.payment,
            refund: vmCard1.refund
          }
        },
        template: '<span>'+macro+'</span>'
      })
      this.compiled = Vue.compile('<cp-macro></cp-macro>');
    },
    hide: function () {
      this.compiled = null; // must remove for the next macro to show
    }
  }
})
</script>