Merge branch 'main' of https://github.com/FongMi/CatVodSpider
This commit is contained in:
commit
e2eba87e2b
|
|
@ -7,10 +7,10 @@ import com.whl.quickjs.wrapper.QuickJSContext;
|
||||||
|
|
||||||
public class Method {
|
public class Method {
|
||||||
|
|
||||||
private final QuickJSContext context;
|
private QuickJSContext ctx;
|
||||||
|
|
||||||
public Method(QuickJSContext context) {
|
public Method(QuickJSContext ctx) {
|
||||||
this.context = context;
|
this.ctx = ctx;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Keep
|
@Keep
|
||||||
|
|
@ -18,14 +18,4 @@ public class Method {
|
||||||
public void showToast(String msg) {
|
public void showToast(String msg) {
|
||||||
Utils.notify(msg);
|
Utils.notify(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Keep
|
|
||||||
public static class test {
|
|
||||||
|
|
||||||
@Keep
|
|
||||||
@JSMethod
|
|
||||||
public int add(int a, int b) {
|
|
||||||
return a + b;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,19 +8,18 @@ import com.whl.quickjs.wrapper.QuickJSContext;
|
||||||
|
|
||||||
public class JSDemo extends Spider {
|
public class JSDemo extends Spider {
|
||||||
|
|
||||||
private QuickJSContext jsContext;
|
private QuickJSContext ctx;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void init(Context context, String extend) {
|
public void init(Context context, String extend) {
|
||||||
jsContext = QuickJSContext.create();
|
ctx = QuickJSContext.create();
|
||||||
jsContext.evaluate("var text = 'Hello QuickJS';");
|
ctx.evaluate("var text = 'Hello QuickJS';");
|
||||||
String text = jsContext.getGlobalObject().getString("text");
|
String text = ctx.getGlobalObject().getString("text");
|
||||||
SpiderDebug.log(text);
|
SpiderDebug.log(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void destroy() {
|
public void destroy() {
|
||||||
super.destroy();
|
ctx.destroy();
|
||||||
jsContext.destroy();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
8ebd953e794760d656dc0e0cbe9f8d65
|
ae1463f4584754ef50ab902920ccb7da
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"spider": "https://fongmi.cachefly.net/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;8ebd953e794760d656dc0e0cbe9f8d65",
|
"spider": "https://fongmi.cachefly.net/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;ae1463f4584754ef50ab902920ccb7da",
|
||||||
"wallpaper": "https://gao.chuqiuyu.tk",
|
"wallpaper": "https://gao.chuqiuyu.tk",
|
||||||
"sites": [
|
"sites": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"spider": "https://fongmi.cachefly.net/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;8ebd953e794760d656dc0e0cbe9f8d65",
|
"spider": "https://fongmi.cachefly.net/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;ae1463f4584754ef50ab902920ccb7da",
|
||||||
"wallpaper": "http://饭太硬.top/深色壁纸/api.php",
|
"wallpaper": "http://饭太硬.top/深色壁纸/api.php",
|
||||||
"sites": [
|
"sites": [
|
||||||
{
|
{
|
||||||
|
|
@ -65,14 +65,6 @@
|
||||||
"changeable": 1,
|
"changeable": 1,
|
||||||
"ext": "https://fongmi.cachefly.net/FongMi/CatVodSpider/main/json/duboku.json"
|
"ext": "https://fongmi.cachefly.net/FongMi/CatVodSpider/main/json/duboku.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"key": "傢伙",
|
|
||||||
"name": "傢伙",
|
|
||||||
"type": 4,
|
|
||||||
"api": " https://php.iptv.hz.cz/moguys.php",
|
|
||||||
"searchable": 1,
|
|
||||||
"changeable": 1
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"key": "量子",
|
"key": "量子",
|
||||||
"name": "量子",
|
"name": "量子",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue