我在Main.cpp文件中调用了两个cpp文件,这些代码可以从ams.js文件中调用。我使用Embind Compiler从js调用
这是我的示例代码:
class.h
class CLASS{
public:
int VARIABLE;
void FUNCTION();
};
class.cpp
#include "CLASS.h"
void CLASS::FUNCTION()
{
VARIABLE = 5;
std::cout << "out : "+VARIABLE << std::endl;
}
Main.cpp的
#include <emscripten/bind.h>
#include "CLASS.h"
using namespace emscripten;
class MyClass
{
public:
MyClass(int x)
: x(x)
{}
int getCharCount(std::string strKey)
{
CLASS a;
a.FUNCTION();
return 0;
}
private:
int x;
};
EMSCRIPTEN_BINDINGS(my_class_example) {
class_<MyClass>("MyClass")
.constructor<int>()
.function("getCharCount", &MyClass::getCharCount);
}
编译:
emcc - 绑定Main.cpp -o main.js
在Render.js中调用函数
var instance = new Module.MyClass();
if (instance){
var mainee = instance.getCharCount("hi")
console.log("Somrthing is There");
}else{
console.log("Somrthing Wrong");
}
instance.delete();
输出错误:
main3.js:2780 Uncaught BindingError: Tried to invoke ctor of MyClass with invalid number of parameters (0) - expected (1) parameters instead!
帮我解决这个问题
答案 0 :(得分:1)
使用单独的编译。
emcc --bind -c class.cpp
emcc --bind -c main.cpp
emcc --bind class.o main.o -o main.js
但是BindingError是由new Module.MyClass();
引起的,请尝试new Module.MyClass(123);
。