原帖地址:http://www.cnblogs.com/yinxufeng/p/5653920.html

Script与Native交互基础

1 参照SDK中“plain-win”的例子,自定义一个窗口类,继承自sciter::host< window >sciter::event_handler

  1. class window: public sciter::host<window>
  2. , public sciter::event_handler
  3. {
  4. HWND _hwnd;
  5. static LRESULT CALLBACK wnd_proc(HWND, UINT, WPARAM, LPARAM);
  6. static window* ptr(HWND hwnd);
  7. static bool init_class();
  8. public:
  9. // notification_handler traits:
  10. HWND get_hwnd() const { return _hwnd; }
  11. HINSTANCE get_resource_instance() const{ return ghInstance; }
  12. window();
  13. bool init(); // instance
  14. bool is_valid() const { return _hwnd != 0; }
  15. };

注意

HWND get_hwnd() const { return _hwnd; }

HINSTANCE get_resource_instance() const{ return ghInstance; }

必须要实现,否则host无法获取资源

2 在窗口初始化的时候,通过sciter::attach_dom_event_handler绑定Sciter DOM事件到该窗口上

  1. bool window::init()
  2. {
  3. SetWindowLongPtr(_hwnd, GWLP_USERDATA, LONG_PTR(this));
  4. setup_callback();
  5. // // attach event_handler to the window
  6. sciter::attach_dom_event_handler(_hwnd, this);
  7. load_file(L"res:default.htm");
  8. return true;
  9. }

简化方式

SDK中已经为每个操作系统平台定义了各自的“主”函数

  • sciter-sdk/include/sciter-win-main.cpp - on Windows
  • sciter-sdk/include/sciter-osx-main.mm - on OS X
  • sciter-sdk/include/sciter-gtk-main.cpp - on Linux

这里我们将sciter-win-main.cpp包含到我们项目中,自定义个窗口类,继承自sciter::window

Script调用Native

在自定义窗口类中,通过类似MFC的消息映射方式来绑定事件处理函数

  1. BEGIN_FUNCTION_MAP
  2. FUNCTION_0("helloWorld", helloWorld);
  3. FUNCTION_2("native_sum", native_sum); // 后面的2表示有2个参数
  4. FUNCTION_0("native_api", native_api);
  5. END_FUNCTION_MAP
  6. sciter::string helloWorld() { return L"Hello u-minimal World"; }
  7. int native_sum(sciter::value a, sciter::value b) { return a.d + b.d; }
  8. sciter::value native_api() {
  9. sciter::value api_map;
  10. sciter::value api_math_map;
  11. std::function<int(int,int)> native_sum = [](int a, int b) { return a + b; };
  12. std::function<int(int,int)> native_sub = [](int a, int b) { return a - b; };
  13. api_math_map.set_item(sciter::value("sum"), sciter::vfunc( native_sum ));
  14. api_math_map.set_item(sciter::value("sub"), sciter::vfunc( native_sub ));
  15. api_map.set_item(sciter::value("math"), api_math_map);
  16. return api_map;
  17. }

在tiscript中这么调用

  1. <script type="text/tiscript">
  2. var message = view.helloWorld();
  3. view.native_sum(a, b);
  4. view.nativeApi().math.sub(c, d);
  5. </script>

这里的view是全局对象,代表当前运行Sciter的窗口, 他有很多自带的函数,如close(关闭), msgbox(消息框),selectFile(文件选择框),Update等。

FUNCTION_MAP中定义的函数映射,可以通过view来直接调用:view.native_sum(a, b)。

另外有一种方法可以将Native写的函数包装在一起,比如native_api,view在调用的时候,直接使用view.native_api().math.xxx

sciter::value native_api()函数,返回值是一个Map类型,转换成sciter::value,结构类似下面:

return {
math: {
sum: {native_sum},
sub: {native_sub},
}
}

Native调用Script

比如在script中有这么一个方法:

  1. <script type="text/tiscript">
  2. namespace Test {
  3. function add(n1,n2) { return n1+n2; }
  4. }
  5. </script>

在Native中这么调用:

  1. sciter::dom::element root = self->get_root();
  2. sciter::value r;
  3. try {
  4. r = root.call_function("Test.add",sciter::value(2),sciter::value(2));
  5. } catch (sciter::script_error& err) {
  6. std::cerr << err.what() << std::endl;
  7. }
  8. // or sciter::value r = self->call_function("Test.add",sciter::value(2),sciter::value(2));
  9. assert(r.is_int() && r.get(0) == 4);

Test是script中的命名空间

self是当前窗口sciter::host< window >对象实例

[Sciter] Script与Native交互的更多相关文章

  1. js与native交互

    js与native交互 UIWebView Native调用JS,使用stringByEvaluatingJavaScriptFromString来解释执行js脚本. //script即为要执行的js ...

  2. [Sciter系列] MFC下的Sciter–3.Sciter脚本与底层交互

    [Sciter系列] MFC下的Sciter–3.Sciter脚本与底层交互,脚本调用底层自定义的方法函数. 本系列文章的目的就是一步步构建出一个功能可用,接口基本完善的基于MFC框架的SciterF ...

  3. Hybrid App: 对比UIWebView和WebKit实现JavaScript与Native交互

    一.简介 在前面一篇文章中讲到过实现JavaScript与Native交互的方式有一种就是使用原生内嵌webView.在iOS8之前,开发者只能使用苹果提供的UIWebView类来加载URL或者HTM ...

  4. React Native交互组件之Touchable

    React Native交互组件之Touchable:只要在组件外面包一个Touchable组件就可以实现点击交互. TouchableHighlight:高亮触摸 当点击时,组件的透明度会改变,可以 ...

  5. 【quickhybrid】H5和Native交互原理

    前言 Hybrid架构的核心就是JSBridge交互,而实现这个交互的前提是弄清楚H5和Native端的交互 本文主要介绍Native端(Android/iOS)和H5端(泛指前端)的交互原理 (之前 ...

  6. 与native交互时会出现的问题

    1.jsbridge:  可以用jsbridge与native交互,这属于第三方库,前端后端都需要加jsbridge 2.可以直接调用原生的方法,ios:  window.webkit.message ...

  7. 《React-Native系列》RN与native交互与数据传递

    RN怎么与native交互的呢? 下面我们通过一个简单的Demo来实现:RN页面调起Native页面,Native页面选择电话本数据,将数据回传给RN展示. 首先是 Native侧 1.MainAct ...

  8. 《React-Native系列》3、RN与native交互之Callback、Promise

    接着上一篇<React-Native系列>RN与native交互与数据传递,我们接下来研究另外的两种RN与Native交互的机制 一.Callback机制 首先Calllback是异步的, ...

  9. Android中H5和Native交互的两种方式

    Android中H5和Native交互的两种方式:http://www.jianshu.com/p/bcb5d8582d92 注意事项: 1.android给h5页面注入一个对象(WZApp),这个对 ...

随机推荐

  1. (11) openssl req(生成请求证书、私钥和自建CA)

    伪命令req大致有3个功能:生成证书请求文件.验证证书请求文件和创建根CA. 由于openssl req命令选项较多,所以先各举几个例子,再集中给出openssl req的选项说明.若已熟悉opens ...

  2. NFS共享存储服务部署

    第1章 NFS介绍 1.1 NFS基本概述 NFS(Network File System)网络文件系统 主要功能是通过局域网络让不同的主机系统之间可以共享文件或目录. NFS系统和Windows网络 ...

  3. 跟http相关的

    http http 中     请求: 请求行    请求方式   采用协议   版本号     网址    请求头    客户端可以接受数据类型    可以接受语言     可以接受的压缩格式 请求 ...

  4. 算法导论 第十二章 二叉搜索树(python)

    上图: 这是二叉搜索树(也有说是查找树的)基本结构:如果y是x的左子树中的一个结点,那么y.key <= x.key(如a图中的6根结点大于它左子树的每一个结点 6 >= {2,5,5}) ...

  5. 【MySQL】性能优化之 Index Condition Pushdown

    一 概念介绍    Index Condition Pushdown (ICP)是MySQL 5.6 版本中的新特性,是一种在存储引擎层使用索引过滤数据的一种优化方式.a 当关闭ICP时,index ...

  6. 【Codeforces 1083A】The Fair Nut and the Best Path

    [链接] 我是链接,点我呀:) [题意] 题意 [题解] 我们最后要的是一条最长的路径. 这条路径的权值和是所有点的权值和-所有边的权值和且这个值最大. 显然如果我们在某一条边上的累计的权值和< ...

  7. BNU 13174 Substring Frequency

    3C. Substring Frequency Time Limit: 1000ms Memory Limit: 32768KB 64-bit integer IO format: %lld      ...

  8. 【bzoj1552/3506】[Cerc2007]robotic sort splay翻转,区间最值

    [bzoj1552/3506][Cerc2007]robotic sort Description Input 输入共两行,第一行为一个整数N,N表示物品的个数,1<=N<=100000. ...

  9. 修改K/3 Cloud管理中心端口

    有时候可能会应为端口号被占用或者数据隔离等等,不会使用K/3 Cloud默认的8000端口,这时候就设计到要修改端口号了,具体步骤如下: 1. 2. 打开{安装目录}\ManageSite\App_D ...

  10. 【HDOJ6322】Euler Function(数论)

    题意: 思路: #include <stdio.h> #include <vector> #include <algorithm> #include <str ...