Unity用ExternalCall实现webplayer读写。

本文介绍Unity的Application.ExternalCall方法,用于在Web Player中调用网页的JavaScript函数。此方法非阻塞,能传递多种类型参数,并在网页中定义相应函数进行交互。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Application.ExternalCall

 
 
 
public static void ExternalCall(string functionName, params object[] args);

Parameters

Description

Calls a function in the containing web page (Web Player only).

This will call JavaScript function functionName in the web page that contains the web player, passing given arguments to it. Supported argument types are the primitive types (string, int, float, char) and arrays of them. Any other objects are converted to string (using ToString method) and passed as strings.

The function is called non-blocking, i.e. ExternalCall immediately returns without waiting for the function that was called to complete.

The number of passed arguments can be varying:

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Example() {
        Application.ExternalCall("MyFunction1");
        Application.ExternalCall("MyFunction2", "Hello from Unity!");
        Application.ExternalCall("MyFunction3", "one", 2, 3.0F);
    }
}

The functions to be called are just declared in the HTML page using standard syntax, for example:

 

	// This should be contained in the host page in the appropriate <script> element.
	// Using the above call from Unity, this will receive
	// "Hello from Unity!" as the argument.
	function MyFunction2( arg )
	{
		alert( arg );
	}

如果是些xml文件的话,只能把大量参数以字符串数据的方式传送给javascript,再在javascript中调用activex控件来保存数据。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值