2
所以我對C相當陌生,並且在一個簡單的節點本機擴展上工作。C節點本地擴展調用方法兩次
這裏是我的擴展名爲helloworld.c
Handle<Value> Method(const Arguments& args) {
printf(":%s:\n", "Calling Method");
//SendByte(bdrate,'1');
HandleScope scope;
if(toggleLight()==0){
printf(":%s:\n", "Turning On");
return scope.Close(String::New("Turned On"));
}
else{
printf(":%s:\n", "Turning Off");
return scope.Close(String::New("Turned Off"));
}
}
void init(Handle<Object> target) {
printf(":%s:\n", "Init");
target->Set(String::NewSymbol("hello"),
FunctionTemplate::New(Method)->GetFunction());
}
NODE_MODULE(helloworld, init)
我消耗的代碼前面通過以下Node.js的類...
var addon = require('./build/Release/helloworld');
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write(addon.hello());
response.end();
}).listen(8888);
當我打電話我看到的網站以下在我的終端
~/Desktop/hellonode$ node testnode
:Init:
:Calling Method:
:Turning Off:
:Calling Method:
:Turning On:
爲什麼它似乎在調用該方法兩次?我相信答案很明顯,但我看不到它。
嗯,你可以決定是否使用C或C++?在這裏,你在.c文件中混合了C和C++ ...。哇。 – Griwes 2012-04-15 17:18:57