从CLI创建OpenWhisk Web Action后,通过公共Web Action URL调用操作始终返回空响应正文。返回的HTTP状态代码(200)表示调用成功。
无论函数的返回值如何,空响应正文中都不包含任何内容。
const fs = require('fs')
const execFile = require('child_process').execFile
function hello(params) {
return new Promise((resolve, reject) => {
fs.writeFileSync('test.js', params.code)
const child = execFile('node', ['test.js'], (error, stdout, stderr) => {
if (error) {
console.error('stderr', stderr)
reject({ payload: error })
}
console.log('stdout', stdout)
resolve({ payload: stdout })
})
})
}
exports.hello = hello
使用以下命令创建了Action。
wsk action create test test.js
使用公共HTTP API调用Action会返回以下响应。
$ http get "https://openwhisk.ng.bluemix.net/api/v1/web/NAMESPACE/default/test"
HTTP/1.1 200 OK
Connection: Keep-Alive
Date: Thu, 22 Jun 2017 12:39:01 GMT
Server: nginx/1.11.13
Set-Cookie: DPJSESSIONID=PBC5YS:-2098699314; Path=/; Domain=.whisk.ng.bluemix.net
Transfer-Encoding: chunked
X-Backside-Transport: OK OK
X-Global-Transaction-ID: 1659837265
无论函数返回的值如何,JSON响应正文中都没有任何内容。
答案 0 :(得分:1)
Web动作use the body
parameter用于设置响应正文的内容。如果函数返回的对象中缺少此值,则响应正文将为空。
修改代码以使用此参数将解决此问题。
const fs = require('fs')
const execFile = require('child_process').execFile
function hello(params) {
return new Promise((resolve, reject) => {
fs.writeFileSync('test.js', params.code)
const child = execFile('node', ['test.js'], (error, stdout, stderr) => {
if (error) {
console.error('stderr', stderr)
reject({ body: error })
}
console.log('stdout', stdout)
resolve({ body: stdout })
})
})
}
exports.hello = hello