我調用存儲過程的存儲過程的返回值「ujo_get_id」通過下面的代碼訪問
new sql.Request()
.input('id', sql.Int, 0)
.input('fld', sql.VarChar(10), fld)
.execute('ujo_get_id').then(function(recordsets) {
console.log(recordsets[0][0]);
}.catch(function(err) {
// ... execute error checks
});
控制檯的輸出顯示這個{ ' ': "some value" }
我想要的值存儲(一些值)在變量我怎麼能這樣做,因爲鍵是空的
您能修改存儲過程? – jjwilly16