-1

我有一个具有这种架构的 Java 应用程序:实体 + 持久性 + 业务 + REST 服务。

我想创建没有 JSF 的视图层,换句话说,我只想使用 HTML + CSS + JS (JQuery + Ajax)。

创建 JavaScript 类以访问 REST 服务的更好方法是什么?

var Bookmark = function() {
this.id;
this.description;
this.link;
};

Bookmark.prototype._insert = function() {
// here should i put the JQuery Ajax Call?
}; 

Bookmark.prototype._delete = function() {
// here should i put the JQuery Ajax Call?
}

Bookmark.prototype._update = function() {
// here should i put the JQuery Ajax Call?
}

Bookmark.prototype._findById = function() {
// here should i put the JQuery Ajax Call?
}

Bookmark.prototype._findById = function() {
// here should i put the JQuery Ajax Call?
}

上面的格式可以接受吗?

4

1 回答 1

1

你有什么没问题。您可能遇到的问题是,如果您与服务器的交互没有明确落入一个模型对象的领域,那么您的模型层将会变得混乱。

为什么不做你在服务器上做的事情,并创建一个服务层呢?

App.API =  {

     login: function(onSuccess) {....}

     findBook: function(id, onSuccess) {....}


}
于 2013-05-08T16:58:29.463 回答