我正在尝试使Netlify Functions与Go一起使用。 首先,我尝试克隆官方示例存储库(https://github.com/netlify/aws-lambda-go-example),并且可以正常工作。
我的问题是,我有一个需要hugo
构建命令的Hugo网站,但我不知道如何使用hugo
构建Hugo和如何使用make build
构建源文件(例如示例回购)-我认为它可以解决问题,但找不到描述此选项的相关文档。
所以我的下一步是手动编译Go函数文件并将其放入functions
文件夹中。
源文件(来自上面的示例):
package main
import (
"github.com/aws/aws-lambda-go/events"
"github.com/aws/aws-lambda-go/lambda"
)
func handler(request events.APIGatewayProxyRequest) (events.APIGatewayProxyResponse, error) {
return events.APIGatewayProxyResponse{
StatusCode: 200,
Body: "Hello AWS Lambda and Netlify",
}, nil
}
func main() {
// Make the handler available for Remote Procedure Call by AWS Lambda
lambda.Start(handler)
}
我使用https://github.com/aws/aws-lambda-go#building-your-function上可用的指令来编译Go二进制文件:
GOOS=linux GOARCH=amd64 go build -o hello hello.go
zip hello.zip hello
mv hello.zip ./functions/hello.zip
这被推送到Git,因此被部署到Netlify。到目前为止,我的功能出现在Netlify UI中。
但是当我请求函数URL时,出现错误消息:
{
"errorMessage": "Invalid or unexpected token",
"errorType": "SyntaxError",
"stackTrace": [
"",
"SyntaxError: Invalid or unexpected token",
"createScript (vm.js:80:10)",
"Object.runInThisContext (vm.js:139:10)",
"Module._compile (module.js:616:28)",
"Object.Module._extensions..js (module.js:663:10)",
"Module.load (module.js:565:32)",
"tryModuleLoad (module.js:505:12)",
"Function.Module._load (module.js:497:3)",
"Module.require (module.js:596:17)",
"require (internal/module.js:11:18)"
]
}
这是Netlify的功能日志:
1:18:16 AM: hello invoked
1:18:17 AM: Syntax error in module 'hello': SyntaxError
(function (exports, require, module, __filename, __dirname) { ELF
^
SyntaxError: Invalid or unexpected token
at createScript (vm.js:80:10)
at Object.runInThisContext (vm.js:139:10)
at Module._compile (module.js:616:28)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
1:19:02 AM: hello invoked
1:19:03 AM: Syntax error in module 'hello': SyntaxError
^
SyntaxError: Invalid or unexpected token
at createScript (vm.js:80:10)
at Object.runInThisContext (vm.js:139:10)
at Module._compile (module.js:616:28)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
此外,在Netlify UI中,函数名称似乎是hello.js
-我不知道是否应该是这样。在我看来,AWS认为它是Javascript而不是Go。
答案 0 :(得分:2)
我尚未在Netlify上测试过压缩的go功能。
如果您不想在这种情况下进行手动构建,则可以在Netlify部署中内联构建命令。
添加一个构建命令,该命令同时为项目进行构建。
[build]
command = "make build && hugo"
functions = "functions"
publish = "public"
[build.environment]
# Change this path with the path to your repository
GO_IMPORT_PATH = "github.com/netlify/aws-lambda-go-example"