gpt4 book ai didi

javascript - 更改 Vue.js 示例以使用 ajax

转载 作者:行者123 更新时间:2023-11-28 18:24:00 25 4
gpt4 key购买 nike

我在我的最新项目中使用 Vue.js,在项目的一部分中,我需要渲染一个存储在数据库中的 TreeView - 我使用 Vue.js TreeView 示例作为基础,数据来 self 的服务器格式正确。

我找到了一种方法来修改示例以从js加载数据,但是当它完成时,组件已经被渲染了。当我使用来自服务器的数据预加载 var 时,我已经检查过数据是否有效。

我该如何改变才能从ajax加载?

我的js:

Vue.component('item', {
template: '#item-template',
props: {
model: Object
},
data: function() {
return {
open: false
}
},
computed: {
isFolder: function() {
return this.model.children && this.model.children.length
}
},
methods: {
toggle: function() {
if (this.isFolder) {
this.open = !this.open
}
},
changeType: function() {
if (!this.isFolder) {
Vue.set(this.model, 'children', [])
this.addChild()
this.open = true
}
}
}
})

var demo = new Vue({
el: '#demo',
data: {
treeData: {}
},
ready: function() {
this.fetchData();
},
methods: {
fetchData: function() {
$.ajax({
url: 'http://example.com/api/categories/channel/treejson',
type: 'get',
dataType: 'json',
async: false,
success: function(data) {

var self = this;
self.treeData = data;

}
});
}
}
})

模板:

<script type="text/x-template" id="item-template">
<li>
<div
:class="{bold: isFolder}"
@click="toggle"
@dblclick="changeType">
@{{model.name}}
<span v-if="isFolder">[@{{open ? '-' : '+'}}]</span>
</div>
<ul v-show="open" v-if="isFolder">
<item
class="item"
v-for="model in model.children"
:model="model">
</item>
</ul>
</li>
</script>

和 html:

<ul id="demo">
<item
class="item"
:model="treeData">
</item>
</ul>

最佳答案

问题出在 $.ajax() 调用中。 success 处理程序中 self 的值有错误

success: function(data) {
var self = this; // this = jqXHR object
self.treeData = data;
}

使用 context选项和 this.treeData

$.ajax({
url: 'http://example.com/api/categories/channel/treejson',
type: 'get',
context: this, // tells jQuery to use the current context as the context of the success handler
dataType: 'json',
async: false,
success: function (data) {
this.treeData = data;
}
});

或者将 var self = this 行移动到 $.ajax();

之前的正确位置
fetchData: function () {
var self = this;

$.ajax({
url: 'http://example.com/api/categories/channel/treejson',
type: 'get',
dataType: 'json',
async: false,
success: function (data) {
self.treeData = data;
}
});
}

关于javascript - 更改 Vue.js 示例以使用 ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39472099/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com