将Django数据传递到Vue组件

时间:2020-02-28 23:15:20

标签: javascript django vue.js vuejs2 vue-component

我正在使用Django作为后端,并且试图将一些数据传递到我制作的Vue表组件中。我使用此tutorial进行了设置。使用Webpack时,该组件显示正常。我试图将数据设置为JavaScript常量,然后将其传递到组件中。数据似乎没有通过。这是我的脚本的布局方式。

index.html

{% block content %}
<script>
  const gridData = {{json_data|safe}};
  console.log(gridData)
</script>

    <div id="app">
        <table_component
        v-bind:tableData=this.gridData
        >
        </table_component>

    </div>  
{% end block %}

myComponent.vue脚本

export default {
  name: 'table_component',
    props: {
    tableData: Array
  },
  data() {
      return {

      }
  },
  components: {
    Grid,
    ButtonModal
  },
  created(){
    console.log(this.tableData)
  },
}

当我查看控制台时,它没有显示任何数据。它只是说未定义。

view.py

class CurrentClassroomView(LoginRequiredMixin, CreateView):
    template_name = 'home/index.html'

    def get(self, request, *args, **kwargs):
        db_data = list(myData.objects.all().values())
        my_json_data = json.dumps(db_data)
        return render(request, self.template_name, {'json_data':my_json_data})  

我在控制台中收到这个消息,我不确定这是什么意思,以及为什么即使我使用大写字母传递,也会使所有内容变为小写。

[Vue tip]: Prop "griddata" is passed to component <Anonymous>, but the declared prop name is "gridData". Note that HTML attributes are case-insensitive and camelCased props need to use their kebab-case equivalents when using in-DOM templates. You should probably use "grid-data" instead of "GridData".
tip @ vue.js:639
extractPropsFromVNodeData @ vue.js:2294
createComponent @ vue.js:3233
_createElement @ vue.js:3427
createElement @ vue.js:3359
vm._c @ vue.js:3496
eval @ VM1553:3
Vue._render @ vue.js:3550
updateComponent @ vue.js:4066
get @ vue.js:4477
Watcher @ vue.js:4466
mountComponent @ vue.js:4073
Vue.$mount @ vue.js:9043
Vue.$mount @ vue.js:11943
Vue._init @ vue.js:5011
Vue @ vue.js:5077
eval @ index.js:14
./assets/js/index.js @ app.js:409
__webpack_require__ @ app.js:20
(anonymous) @ app.js:84
(anonymous) @ app.js:87

在此方面的任何帮助将不胜感激。我不确定我要去哪里哪里

1 个答案:

答案 0 :(得分:1)

设置gridData并尝试将其绑定到Vue组件时,它不起作用,因为它们具有不同的上下文。在处理Vue组件时,您只能访问在Vue实例内部定义的数据。此外,{{json_data|safe}}容易受到XSS类型的攻击。<​​/ p>

但是,将数据从Django安全地传递到Vue组件非常容易,我们只需要使用json_script过滤器并将数据加载到Vue的mounted挂钩中即可。

views.py 中,只需将列表传递到模板即可,无需使用json.dumps()

class CurrentClassroomView(LoginRequiredMixin, CreateView):
    template_name = 'home/index.html'

    def get(self, request, *args, **kwargs):
        db_data = list(myData.objects.all().values())
        return render(request, self.template_name, {'json_data':db_data}) 

index.html 中,我们将使用json_script模板标记创建json_data变量的JSON格式表示形式:

{% block content %}
{{ json_data|json_script:"json_data" }}

<div id="app">
    <table_component></table_component>
</div>  
{% end block %}

这将创建一个<script>块,例如:

<script id="json_data" type="application/json">{"hello": "world"}</script>

最后,在 myComponent.vue 中,我们加载,JSON解码并在mounted钩子中设置数据:

export default {
  data() {
      return {
          tableData
      }
  },
  components: {
    Grid,
    ButtonModal
  },
  mounted() {
    this.tableData = JSON.parse(document.getElementById('json_data').textContent)
  },
}