您的位置:首页 > 文旅 > 旅游 > 免费素材网png_建设公司官网制作平台_win10优化大师官网_公司网站设计需要多少钱

免费素材网png_建设公司官网制作平台_win10优化大师官网_公司网站设计需要多少钱

2025/1/8 4:11:14 来源:https://blog.csdn.net/li53957105/article/details/144287033  浏览:    关键词:免费素材网png_建设公司官网制作平台_win10优化大师官网_公司网站设计需要多少钱
免费素材网png_建设公司官网制作平台_win10优化大师官网_公司网站设计需要多少钱

发送post请求

public string url = "http://XXXXXXXXX";// 请求数据public string postData = "{\"user_id\": 1}";// Start is called before the first frame updatevoid Start(){// Post();StartCoroutine(PostRequestCoroutine(url, postData));}private IEnumerator PostRequestCoroutine(string url, string jsonData){// 创建 UnityWebRequestUnityWebRequest request = new UnityWebRequest(url, "POST");byte[] jsonToSend = new System.Text.UTF8Encoding().GetBytes(jsonData);// 设置请求体和头部request.uploadHandler = new UploadHandlerRaw(jsonToSend);request.downloadHandler = new DownloadHandlerBuffer();request.SetRequestHeader("Content-Type", "application/json");// 发送请求yield return request.SendWebRequest();// 检查响应if (request.result == UnityWebRequest.Result.Success){Debug.Log("Response: " + request.downloadHandler.text);}else{Debug.LogError("Error: " + request.error);}}

如果请求是http协议,需要配置

打包web后会受到跨域的影响

获取地址栏参数

打包后,会有一个index.html文件,原理是通过js获取地址栏参数,然后使用unity的js实例,向游戏内的一个对象发送消息,调用一个方法并传递参数。

在index.html里,添加获取地址栏参数方法:

function getUrlParameter(name) {name = name.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]');var regex = new RegExp('[\\?&]' + name + '=([^&#]*)');var results = regex.exec(location.search);return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' '));
}

在创建unity的js实例后,添加调用方法:

script.onload = () => {createUnityInstance(canvas, config, (progress) => {document.querySelector("#unity-progress-bar-full").style.width = 100 * progress + "%";}).then((unityInstance) => {document.querySelector("#unity-loading-bar").style.display = "none";document.querySelector("#unity-fullscreen-button").onclick = () => {unityInstance.SetFullscreen(1);};// 获取参数var param1 = getUrlParameter('uid');var param2 = getUrlParameter('t');// 调用游戏对象Controller上的ReceiveParameters方法,传递字符串参数unityInstance.SendMessage('Controller', 'ReceiveParameters', param1 + ',' + param2);}).catch((message) => {alert(message);});};

解决TypeError:s.replaceAll is not a function

 如果浏览器版本较低,运行时,会报错:TypeError:s.replaceAll is not a function

解决方法很简单,在index.html的js代码最开始,直接为字符串类型定义replaceAll方法

String.prototype.replaceAll = function(search, replacement) {const pattern = search.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); // 转义字符const reg = new RegExp(pattern, 'g'); // 创建全局正则表达式return this.replace(reg, replacement);
};

其他一些错误解决方法:.gzip

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com