codecamp

Tauri Child

Since: 1.1.0

构造 函数

constructor

new Child(: ): Childpidnumber

参数

名字类型
pidnumber

Defined in: shell.ts:325

性能

pid
PID:​number

子进程 。pid

Defined in: shell.ts:323

方法

kill

kill(): Promise<void>

终止子进程。

Returns: Promise<void>

指示操作成功或失败的承诺。

write

write(: | Uint8Array): Promisedatastring<void>

写入 .​data​stdin

import { Command } from '@tauri-apps/api/shell';
const command = new Command('node');
const child = await command.spawn();
await child.write('message');
await child.write([0, 1, 2, 3, 4, 5]);

参数

名字类型描述
datastring | Uint8数组要写入的消息,可以是字符串,也可以是字节数组。

Returns: Promise<void>

指示操作成功或失败的承诺。


Tauri 限制对 API 的访问Command
Tauri Command
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Tauri 指南

Tauri 特性

Tauri 插件

Tauri 应用程序接口

Tauri JavaScript/TypeScript

Tauri 命令行界面

Tauri 进程

Tauri 参考

Tauri WebView 版本

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }