shell 脚本中的“需要数字参数”错误

shell 脚本中的“需要数字参数”错误
#!/bin/sh

get_json_response(){
  status=$1
  mode=$2
  errorcode=$3
  json_response=`python getJsonResponse.py $status $mode $errorcode`
  return json_response
}

get_json_response 0 0 0 

当我尝试运行上述代码时出现以下错误 -

复制代码

./tryfunction.sh:第 8 行:返回:json_response:需要数字参数

我该如何纠正这个错误?

相关内容