function _addTag(tag, newTag) {
tag.tags = [];
tag.tags.push(newTag);
var req = {
url: 'http://localhost:8081/tag/update',
method: 'PUT',
data: {
id: tag.id,
tags: tag.tags
}
};
return $http(req);
};
我得到 404 。
API /模型/ tag.js
module.exports = {
attributes: {
tag: {
type: 'array',
defaultsTo: []
}
}
};
API /控制器/ TagController.js
module.exports = {
};
我的问题是:我是否正确使用蓝图api?我是否发布了正确的自动生成地址?
答案 0 :(得分:0)