入门骨干网和一个RESTful

入门骨干网和一个RESTful

本文介绍了入门骨干网和一个RESTful API的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在骨干网,我有一个用户模型:

In Backbone, I have a User model:

var User = Backbone.Model.extend({
  url: '/api/user'
});

接下来,我实例化一个用户对象:

Next, I instantiate a user object:

var user = new User({ id: "123" });

然后我打电话:

user.fetch();

一旦在网络督察网络窗格中的检查,似乎一个API调用到 / API /用户打电话时所取得的用户方式。我的问题很简单:?我不应该指望它使API调用 / API /用户/ 123

Upon inspection of the networks pane in Web Inspector, it appears that an API call is being made to /api/user when calling the fetch method on user. My question is simply this: should I not expect it to make an API call to /api/user/123?

推荐答案

您使用的是集合以外的模式,所以你需要设置urlroot

You are using a model outside of the collection, so you need to set the urlroot

这篇关于入门骨干网和一个RESTful API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 05:32