gpt4 book ai didi

javascript - 使用 JSON Api URL EmberJS

转载 作者:行者123 更新时间:2023-12-03 06:48:49 26 4
gpt4 key购买 nike

我通常从我创建的服务获取数据,即硬编码的 JSON。但我需要从 URL 获取 JSON。

这是我的玩意:

https://ember-twiddle.com/b9cd8b1b3418d876f88235c4aa99e268?openFiles=templates.pic.hbs%2Ctemplates.components.image-list.hbs14

如何添加 URL 作为源,而不是从服务“图片”调用它?我尝试了一些东西,但出现错误并且无法执行任何操作。我对此很陌生。

我试过了

model() {
return $.getJSON('/my-url');
}

但我收到此错误:

Mirage: Your Ember app tried to GET 'my URL', but there was no route defined to handle this request. Define a route that matches this path in your mirage/config.js file. Did you forget to add your namespace?

我完全不知道这个错误,因为我不使用 Mirage,我创建了它,但没有在项目的任何部分使用。

然后我尝试了:

import Ember from 'ember';

export default Ember.Route.extend({
model() {
this.get('my Json url', () => {
return [];
});
}
});

现在 chrome 的 devTool 不会给出任何错误,但我看到的只是一个空白页面。这一切都是错误的还是与 .hbs 文件有关?

有什么想法吗?谢谢!

最佳答案

卸载ember-cli-mirage并返回:

model() {
return $.getJSON('/my-url');
}

关于javascript - 使用 JSON Api URL EmberJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37594773/

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