作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将一些代码重构到 worker 中,但出现错误:
undefined symbol userId
似乎工作人员无法从其上方的范围中看到变量。如何让工作人员看到传入的参数?
import ballerina.net.http;
import ballerina.lang.messages;
import ballerina.lang.jsons;
@http:BasePath ("/foo")
service barApi {
http:ClientConnector endpointEP = create http:ClientConnector("http://example.com");
@http:GET
@http:Path("/users/{userId}")
resource users (message m,
@http:PathParam("userId") string userId) {
worker sampleWorker(message m) {
string requestPath = "/user/" + userId;
message response = http:ClientConnector.get(endpointEP, requestPath, m);
最佳答案
您可以使用新的 worker 交互设计将任意数量的变量传递给芭蕾舞 Actor 。假设您想将 2 个变量从您的默认工作程序(主要)传递给另一个工作程序 W1,这是示例代码。
import ballerina.lang.system;
function main(string[] args) {
int x = 10;
string s = "Test";
x, s -> W1;
worker W1 {
int y;
string t;
y,t <- default;
system:println("Inside worker " + y + " " + t);
}
}
关于ballerina - 如何将变量传递给芭蕾舞 Actor ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43001271/
我是一名优秀的程序员,十分优秀!