[Sciter] Script与Native交互
Script与Native交互基础
1 参照SDK中“plain-win”的例子,自定义一个窗口类,继承自sciter::host< window >和sciter::event_handler
class window: public sciter::host<window>, public sciter::event_handler{HWND _hwnd;static LRESULT CALLBACK wnd_proc(HWND, UINT, WPARAM, LPARAM);static window* ptr(HWND hwnd);static bool init_class();public:// notification_handler traits:HWND get_hwnd() const { return _hwnd; }HINSTANCE get_resource_instance() const{ return ghInstance; }window();bool init(); // instancebool is_valid() const { return _hwnd != 0; }};
注意:
HWND get_hwnd() const { return _hwnd; }
HINSTANCE get_resource_instance() const{ return ghInstance; }
必须要实现,否则host无法获取资源
2 在窗口初始化的时候,通过sciter::attach_dom_event_handler绑定Sciter DOM事件到该窗口上
bool window::init(){SetWindowLongPtr(_hwnd, GWLP_USERDATA, LONG_PTR(this));setup_callback();// // attach event_handler to the windowsciter::attach_dom_event_handler(_hwnd, this);load_file(L"res:default.htm");return true;}
简化方式
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的消息映射方式来绑定事件处理函数
BEGIN_FUNCTION_MAPFUNCTION_0("helloWorld", helloWorld);FUNCTION_2("native_sum", native_sum); // 后面的2表示有2个参数FUNCTION_0("native_api", native_api);END_FUNCTION_MAPsciter::string helloWorld() { return L"Hello u-minimal World"; }int native_sum(sciter::value a, sciter::value b) { return a.d + b.d; }sciter::value native_api() {sciter::value api_map;sciter::value api_math_map;std::function<int(int,int)> native_sum = [](int a, int b) { return a + b; };std::function<int(int,int)> native_sub = [](int a, int b) { return a - b; };api_math_map.set_item(sciter::value("sum"), sciter::vfunc( native_sum ));api_math_map.set_item(sciter::value("sub"), sciter::vfunc( native_sub ));api_map.set_item(sciter::value("math"), api_math_map);return api_map;}
在tiscript中这么调用
<script type="text/tiscript">var message = view.helloWorld();view.native_sum(a, b);view.nativeApi().math.sub(c, d);</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中有这么一个方法:
<script type="text/tiscript">namespace Test {function add(n1,n2) { return n1+n2; }}</script>
在Native中这么调用:
sciter::dom::element root = self->get_root();sciter::value r;try {r = root.call_function("Test.add",sciter::value(2),sciter::value(2));} catch (sciter::script_error& err) {std::cerr << err.what() << std::endl;}// or sciter::value r = self->call_function("Test.add",sciter::value(2),sciter::value(2));assert(r.is_int() && r.get(0) == 4);
Test是script中的命名空间
self是当前窗口sciter::host< window >对象实例
[Sciter] Script与Native交互的更多相关文章
- js与native交互
js与native交互 UIWebView Native调用JS,使用stringByEvaluatingJavaScriptFromString来解释执行js脚本. //script即为要执行的js ...
- [Sciter系列] MFC下的Sciter–3.Sciter脚本与底层交互
[Sciter系列] MFC下的Sciter–3.Sciter脚本与底层交互,脚本调用底层自定义的方法函数. 本系列文章的目的就是一步步构建出一个功能可用,接口基本完善的基于MFC框架的SciterF ...
- Hybrid App: 对比UIWebView和WebKit实现JavaScript与Native交互
一.简介 在前面一篇文章中讲到过实现JavaScript与Native交互的方式有一种就是使用原生内嵌webView.在iOS8之前,开发者只能使用苹果提供的UIWebView类来加载URL或者HTM ...
- React Native交互组件之Touchable
React Native交互组件之Touchable:只要在组件外面包一个Touchable组件就可以实现点击交互. TouchableHighlight:高亮触摸 当点击时,组件的透明度会改变,可以 ...
- 【quickhybrid】H5和Native交互原理
前言 Hybrid架构的核心就是JSBridge交互,而实现这个交互的前提是弄清楚H5和Native端的交互 本文主要介绍Native端(Android/iOS)和H5端(泛指前端)的交互原理 (之前 ...
- 与native交互时会出现的问题
1.jsbridge: 可以用jsbridge与native交互,这属于第三方库,前端后端都需要加jsbridge 2.可以直接调用原生的方法,ios: window.webkit.message ...
- 《React-Native系列》RN与native交互与数据传递
RN怎么与native交互的呢? 下面我们通过一个简单的Demo来实现:RN页面调起Native页面,Native页面选择电话本数据,将数据回传给RN展示. 首先是 Native侧 1.MainAct ...
- 《React-Native系列》3、RN与native交互之Callback、Promise
接着上一篇<React-Native系列>RN与native交互与数据传递,我们接下来研究另外的两种RN与Native交互的机制 一.Callback机制 首先Calllback是异步的, ...
- Android中H5和Native交互的两种方式
Android中H5和Native交互的两种方式:http://www.jianshu.com/p/bcb5d8582d92 注意事项: 1.android给h5页面注入一个对象(WZApp),这个对 ...
随机推荐
- CreateProcess相关
CreateProcess不创建窗口执行: https://blog.csdn.net/rongwenbin/article/details/24422041 CreateProcess返回值: 执行 ...
- 用python代码玩微信
# 安装包 pip install -U wxpy from wxpy import * import time import json bot=Bot() my_friend = bot.frien ...
- validate 常用的输入框校验
记录一下angular可以直接用的输入框校验器,外加一个国内手机号码的校验 <!DOCTYPE html> <html> <head> <meta chars ...
- vue 项目部署
vue项目部署到PHP项目 入口目录 vue项目打包后, 是一个单文件html 我们只需要把打包后的文件夹放在php项目的public下面 访问 xxx.com/h5/index.html 就可以访问 ...
- python基础知识07-函数作用域和匿名函数
1.匿名函数 list(filter(lamda a:a>3,[1,2,3,4,5])) 一般和过滤器一起使用 2.函数的作用域 a = 123 def test(): a = 666 a = ...
- Django 动态建表
#!/usr/bin/env python # -*- coding:utf-8 -*- # Author:Random_lee # -*- coding: utf-8 -*- from django ...
- C# 判断字符串为空的4种方法及效率
在程序开发过程中,少不了要处理字符串,并且常常要判断字符串是否为空,通常有哪些判断方法,以及不同方法的效率又怎么样? 在 C# 中,通常有三种判断字符串是否为空的方法,下面分别探讨. 1.str.Le ...
- Oracle臨時表空間過大問題解決
查詢資料庫伺服器時,發現資料庫伺服器磁片使用空間達到了98%,分析總共的資料檔案也不可能達到如此大,經過查詢發現原來臨時表空間的使用方式達到了 32G,導致磁碟空間使用緊張.搜索了相應的文檔與資料後, ...
- [BZOJ4207]Can
[BZOJ4207]Can 试题描述 这个问题是源于一个在棋盘上玩的,由Sid Sackson设计的名叫Can't stop的游戏的.这个问题与Can't stop有一定的相似之处,但是不需要玩过Ca ...
- hdu 1421经典dp
#include<stdio.h> #include<stdlib.h> #define N 2001 #define inf 0x3fffffff int a[N],dp[N ...