几天前,我开始使用 Google App Engine 和 Google Cloud Endpoints 为移动应用程序开发后端。
最初,我部署了具有以下实体字段的第一个版本:
@Entity
public class Tweet {
@Id
private String id;
private String user;
private String text;
private String date;
private int count;
private String linkTweet;
过了一会儿,我添加了其他字段:
@Entity
public class Tweet {
@Id
private String id;
private String user;
private String text;
private String date;
private int count;
private String linkTweet;
private String imageHttp;
private String imageHttps;
private String userId;
在数据存储中,我看到了更改,但是当我转到https://myappid.appspot.com/_ah/api/tweetendpoint/v1/tweet时,我只看到旧字段,没有imageHttp imageHttps userId 字段:(
我哪里错了?