如何在环回中访问另一个模型的功能?
How to access function another model in loopback?
我有两个模型 Place 和 Tag。我在 tag.js 中创建了 creteTag() 远程方法,我想在 place.js.
中访问这个函数
tag.js
'use strict';
var request = require('request');
module.exports = function(Tag) {
Tag.crateaTag = function(name, callback) {
request({
method: 'POST',
url: 'http://localhost:3000/api/tags',
body:{
"name": name
},
json: true
},
function (error, response,body) {
if (error || response.statusCode != 200) {
console.log('Hiba' + error + ' \n' + response);
}
callback(error, body);
});
};
place.js
'use strict';
var request = require('request');
module.exports = function(Place) {
var app = require('../../server/server');
Place.createPlace = function(name, descreption, tagName, callback) {
var Tag = app.models.Tag; //???
request({
method: 'POST',
url: 'http://localhost:3000/api/tags',
body:{
"name": name,
"descreption": descreption,
"tag": Tag.createTag(tagName) //???
},
json: true
},
function (error, response, body) {
if (error || response.statusCode != 200) {
console.log('Hiba' + error + ' \n' + response);
}
callback(error, body);
});
};
};
我想 post 我想在我的数据库中看到单独的集合的标签。
在tag.js中声明crateaTag
为远程方法:
Tag.remoteMethod('crateaTag', {
accepts: {
arg: 'name',
type: 'string',
required: true
},
description: "create a tag"
});
在place.js中使用Tag
作为:
var Tag = app.models.Tag;
Tag.createTag('test', function(){
// do your stuff
});
我有两个模型 Place 和 Tag。我在 tag.js 中创建了 creteTag() 远程方法,我想在 place.js.
中访问这个函数tag.js
'use strict';
var request = require('request');
module.exports = function(Tag) {
Tag.crateaTag = function(name, callback) {
request({
method: 'POST',
url: 'http://localhost:3000/api/tags',
body:{
"name": name
},
json: true
},
function (error, response,body) {
if (error || response.statusCode != 200) {
console.log('Hiba' + error + ' \n' + response);
}
callback(error, body);
});
};
place.js
'use strict';
var request = require('request');
module.exports = function(Place) {
var app = require('../../server/server');
Place.createPlace = function(name, descreption, tagName, callback) {
var Tag = app.models.Tag; //???
request({
method: 'POST',
url: 'http://localhost:3000/api/tags',
body:{
"name": name,
"descreption": descreption,
"tag": Tag.createTag(tagName) //???
},
json: true
},
function (error, response, body) {
if (error || response.statusCode != 200) {
console.log('Hiba' + error + ' \n' + response);
}
callback(error, body);
});
};
};
我想 post 我想在我的数据库中看到单独的集合的标签。
在tag.js中声明crateaTag
为远程方法:
Tag.remoteMethod('crateaTag', {
accepts: {
arg: 'name',
type: 'string',
required: true
},
description: "create a tag"
});
在place.js中使用Tag
作为:
var Tag = app.models.Tag;
Tag.createTag('test', function(){
// do your stuff
});