获取JSHANDLE句柄
Posted FromScratch
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取JSHANDLE句柄相关的知识,希望对你有一定的参考价值。
A string can also be passed in instead of a function:
const aHandle = await page.evaluateHandle(‘document‘); // Handle for the ‘document‘
JSHandle instances can be passed as arguments to the page.evaluateHandle
:
const aHandle = await page.evaluateHandle(() => document.body);
const resultHandle = await page.evaluateHandle(body => body.innerhtml, aHandle);
console.log(await resultHandle.jsonValue());
await resultHandle.dispose();
以上是关于获取JSHANDLE句柄的主要内容,如果未能解决你的问题,请参考以下文章
终于懂了:Delphi重定义消息结构随心所欲,只需要前4个字节是消息编号就行了,跟Windows消息虽然尽量保持一致,但其实相互没有特别大的关系。有了这个,就有了主动,带不带句柄完全看需要。(代码片段