最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to return result of a promise as a string? - Stack Overflow

programmeradmin2浏览0评论

I am trying to create a bot for the discord platform that will search a SQL database and return the objects to the chat for people to see.

SQL uses promises and I have been unable to successfully turn the promise it is returning me into something I can return to the chat (a string or array).

This code queries the database:

function spell(name) {
var spellData = sql.get("SELECT * FROM spells WHERE LOWER(name) = '"+ name.toLowerCase() + "'");
spellData.then( value => {
    console.log(spellData)
    return spellData;
  });

}

The table:

CREATE TABLE spells (
    `name` VARCHAR(25),
    `casting_time` VARCHAR(95),
    `ponents` VARCHAR(215),
    `description` VARCHAR(3307),
    `duration` VARCHAR(52),
    `level` INT,
    `range` VARCHAR(28),
    `school` VARCHAR(13)
  );

I'm using node.js, sqlite, and discord.js.

I am trying to create a bot for the discord platform that will search a SQL database and return the objects to the chat for people to see.

SQL uses promises and I have been unable to successfully turn the promise it is returning me into something I can return to the chat (a string or array).

This code queries the database:

function spell(name) {
var spellData = sql.get("SELECT * FROM spells WHERE LOWER(name) = '"+ name.toLowerCase() + "'");
spellData.then( value => {
    console.log(spellData)
    return spellData;
  });

}

The table:

CREATE TABLE spells (
    `name` VARCHAR(25),
    `casting_time` VARCHAR(95),
    `ponents` VARCHAR(215),
    `description` VARCHAR(3307),
    `duration` VARCHAR(52),
    `level` INT,
    `range` VARCHAR(28),
    `school` VARCHAR(13)
  );

I'm using node.js, sqlite, and discord.js.

Share edited Dec 21, 2020 at 15:04 mkrieger1 23.4k7 gold badges64 silver badges82 bronze badges asked Aug 15, 2018 at 1:09 firewire167firewire167 1391 gold badge3 silver badges13 bronze badges 2
  • For a start, use the value (the argument of .then), not the Promise itself – CertainPerformance Commented Aug 15, 2018 at 1:12
  • if you do that, @CertainPerformance - that would imply - spellData.then( value => { return value; }); - which is redundant ... and still, spell won't return a thing – Jaromanda X Commented Aug 15, 2018 at 1:15
Add a ment  | 

2 Answers 2

Reset to default 7

If you want to return the Promise object to the caller, simply do:

function spell(name) {
    return sql.get("SELECT * FROM spells WHERE LOWER(name) = '" + name.toLowerCase() + "'")
}

Then, in your client:

spell('some_name').then(function(result) { console.log(result); })

Or, if you're into awaiting:

let results = await spell('some_name')
console.log(results)

Don't know if you're making use of it or not but "parameterized queries" will guard against SQL injection attacks. Your NPM package of choice should have an adequately managed implementation.

It seems like you may be misunderstanding how promises work. Even after a promise resolves, it's still a promise object. So in your then callback, when you call console.log(spellData) you're just logging the promise object. The data you want is actually passed into the callback as value, so the working code would be

function spell(name) {
var spellData = sql.get("SELECT * FROM spells WHERE LOWER(name) = '"+ name.toLowerCase() + "'");
return spellData.then( value => {
    console.log(value) //log the returned value
    return value; // returning the value from a then function returns a new promise, so the spell function also returns a promise which you can handle similarly 
  });

}
发布评论

评论列表(0)

  1. 暂无评论