12345678910111213141516171819202122 |
- "use strict";
- module.exports = async () => {
- try {
- let grList = [];
- let res = await dbFind("curric", {type: "intergroup"});
- for (let doc of res)
- grList.push([doc.ingrName, doc.ingrTitle, doc.ingrTeach]);
- return JSON.stringify(grList);
- }
- catch(e) {return "[]";}
- };
|