我有一个具有这种架构的 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?
}
上面的格式可以接受吗?