ios 跨域_如何在iOS和Android中建立跨域通信桥

ios 跨域

I was working on a certain project at work, in which I needed to connect several varying components via messages. Each had its own logic and code language. This made me want to understand all the ways different platforms enable communication.

我正在工作的某个项目上,需要通过消息连接几个不同的组件。 每个都有自己的逻辑和代码语言。 这使我想了解不同平台实现通信的所有方式。

This article’s aim is to explain these cross-origin communication bridges and present simple, yet informative, examples to achieve them.

本文的目的是解释这些跨域通信桥梁,并提供实现这些目标的简单但有用的示例。

There will also be plenty of bridge puns ?

还会有很多双关语吗?

YOU WERE WARNED.

您被警告。

If you just want to get your hands dirty with the code, there are links to the GitHub repositories at the bottom of this article.

如果您只是想弄清楚代码,可以在本文底部找到指向GitHub存储库的链接。

Typically, the JavaScript you write will run inside a browser. On iOS, it can either be a UIWebView or a WKWebView. On Android, a WebView.

通常,您编写JavaScript将在浏览器中运行。 在iOS上 它可以是UIWebView或WKWebView。 在Android上 ,是WebView。

Since iOS can be the more exasperating of the platforms, I’ll describe the communication bridge there first.

由于iOS可能会使平台更加恼人,因此我将首先在此描述通信桥。

伦敦桥倒塌(iOS) (London Bridge is Falling Down (iOS))

From iOS 8 onwards, Apple recommends using WKWebView instead of UIWebView, so the following will only address the bridge on a WKWebView.

从iOS 8开始,Apple建议使用WKWebView而不是UIWebView,因此以下内容仅解决WKWebView上的

For a UIWebView reference, please go here.

有关UIWebView的参考,请转到此处 。

To send messages from the WKWebView to JavaScript, you use the method below:

要将消息从WKWebView发送到JavaScript,请使用以下方法:

- (void)evaluateJavaScript:(NSString *)javaScriptString completionHandler:(void (^)(id, NSError *error))completionHandler;

To receive messages from JavaScript inside your WKWebView, you must do the following:

要从WKWebView内部JavaScript接收消息,您必须执行以下操作:

  1. Create an instance of WKWebViewConfiguration

    创建WKWebViewConfiguration的实例

  2. Create an instance of WKUserContentController

    创建WKUserContentController的实例

  3. Add a script message handler to your configuration (this part bridges the gap). This action also registers your message handler on the window object under the following path: window.webkit.messageHandlers.MSG_HANDLER_NAME

    将脚本消息处理程序添加到您的配置中(这部分弥合了差距)。 此操作还将您的消息处理程序注册到以下路径下的window对象上: window.webkit.messageHandlers.MSG_HANDLER_NAME

  4. Make the class implement the message handler protocol by adding <WKScriptMessageHandler> at the top of the file

    通过在文件顶部添加<WKScriptMessageHandler>,使类实现消息处理程序协议。
  5. Implement userContentController:didReceiveScriptMessage (this method handles receiving the messages from JavaScript)

    实现userContentController:didReceiveScriptMessage (此方法处理从JavaScript接收消息)

建筑桥梁 (Building Bridges)

Let’s say we have the following HTML page set up:

假设我们设置了以下HTML页面:

<html><head><title>Javascript-iOS Communication</title></head><body><script>window.webkit.messageHandlers.myOwnJSHandler.postMessage("Hello World!");</script></body></html>

And in our native code we implement the steps described above:

在我们的本机代码中,我们实现了上述步骤:

#import <UIKit/UIKit.h>
#import <WebKit/WebKit.h>// 4
@interface ViewController : UIViewController <WKScriptMessageHandler>@property(nonatomic, strong) WKWebView *webview;

And violà! Now you have full JavaScript - iOS Communication!

和提琴! 现在,您已经拥有完整JavaScript-iOS通信!

过桥(Android) (Crossing The Bridge (Android))

Things are much simpler and more friendly here. In order to set up our communication bridge, there are only a few steps:

这里的事情更加简单和友好。 为了建立我们的沟通桥梁,只有几个步骤:

  1. Create an instance of a WebView object

    创建一个WebView对象的实例

  2. Enable JavaScript inside this WebView (setJavaScriptEnabled)

    在此WebView中启用JavaScript( setJavaScriptEnabled )

  3. Set your own JavaScript Interface (which will hold methods that are visible to your JavaScript)

    设置自己JavaScript接口(将包含对JavaScript可见的方法)
  4. Any method that you want exposed to your JavaScript must have the @JavascriptInterface annotation before its declaration

    您想要公开给JavaScript的任何方法都必须具有@JavascriptInterface 注解 在宣布之前

Like before, let’s assume we have created this HTML file:

像以前一样,假设我们已经创建了这个HTML文件:

And we have created the following simple Android Application:

我们创建了以下简单的Android应用程序:

And there you go!

然后你去了!

You can now consider yourself a Native Communication Ninja!

您现在可以认为自己是本地交流忍者!

Here are the links to the repositories:

以下是存储库的链接:

AndroidtoJS RepositoryAndroidtoJS存储库 iOStoJS RepositoryiOStoJS存储库

iOS关于iOS的重要说明⚠️ (⚠️ Important Note Regarding iOS ⚠️)

When you get to the point that you want to destroy your WKWebView, it is imperative that you remove your script message handler. If you do not do so, the script message handler will still hold a reference to your WKWebView and memory leaks will ensue upon creating new WKWebViews.

当您到达要销毁WKWebView的地步时,它就是 势在必行 您删除脚本消息处理程序。 如果不这样做,脚本消息处理程序将仍然保留对WKWebView的引用,并且在创建新的WKWebViews时将发生内存泄漏。

翻译自: https://www.freecodecamp.org/news/how-to-build-cross-origin-communication-bridges-in-ios-and-andriod-7baef82b3f02/

ios 跨域

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/393591.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

阿里巴巴旗下平台口碑推出无人收银技术,改造便利店市场;重庆法院运用 AI 探索“智能判案”...

阿里巴巴旗下平台口碑推出无人收银技术&#xff0c;改造便利店市场 雷锋网消息 阿里巴巴旗下本地生活服务平台口碑今日宣布在上海新兴便利店品牌24鲜上线无人收银技术。消费者只要打开支付宝&#xff0c;扫一扫想要购买的商品的条形码&#xff0c;就可以自助提交订单完成支付。…

如何使用射手影音寻找字幕

我们以"理智与情感"Sense and Sensibility为例&#xff0c;在迅雷搜索了下载&#xff0c;结果到了99%就不动了&#xff0c;由于是字幕文件&#xff0c;不能直接把TD的后缀去掉看影片&#xff0c;但是影片已经下载完成&#xff0c;所以我们使用射手影音播放该电影。&a…

mysql 表分区优缺点_Mysql分区表局限性总结

本文测试的版本XML/HTML代码mysql>select version();------------| version() |------------| 5.1.33-log |------------1 row in set (0.00 sec)一、关于Partitioning Keys, Primary Keys, and UniqueKeys的限制在5.1中分区表对唯一约束有明确的规定&#xff0c;每一个唯一…

C# PagedList 真分页

一&#xff1a;nuget 下载 PagedList 二&#xff1a;前端页面 1.需要的数据 model PagedList.IPagedList<DeviceModel>  using PagedList.Mvc 2.使用数据 foreach (var item in Model)   {    <tr> <td>item.Name</td>       <td>…

leetcode1497. 检查数组对是否可以被 k 整除

给你一个整数数组 arr 和一个整数 k &#xff0c;其中数组长度是偶数&#xff0c;值为 n 。 现在需要把数组恰好分成 n / 2 对&#xff0c;以使每对数字的和都能够被 k 整除。 如果存在这样的分法&#xff0c;请返回 True &#xff1b;否则&#xff0c;返回 False 。 示例 1…

计算机页面设置代码,计算机二级考试Access辅导:页面设置模块代码分享

Dim up, dn, le, ri, si, liAs Single , co As string’定义边距及页面函数Sub ymszmk(strName As String) ’页面设置模块On Error GoTo Err_ymszmkIf Nz(DCount("*", "REPORTLIP", "REPORT’" & strName & "’")) 0 ThenMs…

让我们了解Set及其在JavaScript中的独特功能

by Asif Norzai通过Asif Norzai 让我们了解Set及其在JavaScript中的独特功能&#x1f3b2; (Lets learn about Set and its unique functionality in JavaScript &#x1f3b2;) 设置&#x1f3b2; (SET &#x1f3b2;) ES2015/ES6 gave us a lot of useful tools and feature…

C语言第二次博客作业---分支结构

一、PTA实验作业 题目1&#xff1a;计算分段函数[2] 本题目要求计算下列分段函数f(x)的值&#xff1a; 1.实验代码 double x,result;scanf("%lf",&x);if(x>0){resultsqrt(x);}else{resultpow(x1,2)2*x1/x;}printf("f(%.2f) %.2f",x,result); 2 设计…

oracle+数据到+mysql数据库乱码_oracle数据mysql数据库乱码

{"moduleinfo":{"card_count":[{"count_phone":1,"count":1}],"search_count":[{"count_phone":4,"count":4}]},"card":[{"des":"阿里云数据库专家保驾护航&#xff0c;为用户…

ajax 不执行

1、get形式访问&#xff1a; 一个相同的URL 只有一个结果&#xff0c;所以 第二次访问的时候 如果 URL字符串没变化 浏览器是 直接拿出了第一次访问的结果&#xff0c;post则不会 解决办法: 1、urlnew Date(); &#xff08;每次访问时url不同&#xff09; 2、 type : get,   …

leetcode870. 优势洗牌(贪心算法)

给定两个大小相等的数组 A 和 B&#xff0c;A 相对于 B 的优势可以用满足 A[i] > B[i] 的索引 i 的数目来描述。 返回 A 的任意排列&#xff0c;使其相对于 B 的优势最大化。 示例 1&#xff1a; 输入&#xff1a;A [2,7,11,15], B [1,10,4,11] 输出&#xff1a;[2,11,…

Mysql中行转列和列转行

一、行转列即将原本同一列下多行的不同内容作为多个字段&#xff0c;输出对应内容。建表语句DROP TABLE IF EXISTS tb_score; CREATE TABLE tb_score( id INT(11) NOT NULL auto_increment, userid VARCHAR(20) NOT NULL COMMENT 用户id, subject VARCHAR(20) COMMENT…

OSChina 周四乱弹 ——妹子喜欢的是程序员 这是标准……

2019独角兽企业重金招聘Python工程师标准>>> Osc乱弹歌单&#xff08;2017&#xff09;请戳&#xff08;这里&#xff09; 【今日歌曲】 一叶孤鸿 &#xff1a;分享Nanaka的单曲《いのちの名前&#xff08;Cover 木村弓&#xff09;》 《いのちの名前&#xff08;C…

阿里薪资谈判技巧_如何像专业人士一样处理技术职业中的薪资谈判

阿里薪资谈判技巧by Aline Lerner通过艾琳勒纳(Aline Lerner) 如何像专业人士一样处理技术职业中的薪资谈判 (How to handle salary negotiations in your tech career like a pro) 确切地谈薪水时要说些什么 (Know exactly what to say when negotiating your salary) There …

xp系统sql服务器怎么找,SQL文件在winxp系统下怎么打开

很多用户不知道SQL文件是什么?SQL文件怎么打开?我们存储数据时候经常会遇到SQL文件&#xff0c;如果你不知道WinXP系统SQL文件是什么以及怎么打开的话&#xff0c;那就赶紧看看小编整理的以下文章内容吧!SQL文件是什么?学习编程的同学可能都知道SQL是一种高级的非过程化的编…

Silverlight 设计器加载错误

每次打开silverlight页面出如下错误 然后设计器不能将页面加载出来 最后找了蛮多资料的 感觉这个原因有可能&#xff1a;“控制面板的添加删除程序那里&#xff0c;选中Microsoft Silverlight&#xff0c;看看他的版本&#xff0c;是否与所装的SDK的版本号一致。就算两个版本号…

mysql索引优化实际例子_MySQL索引优化的实际案例分析

Order by desc/asc limit M是我在mysql sql优化中经常遇到的一种场景&#xff0c;其优化原理也非常的简单&#xff0c;就是利用索引的有序性&#xff0c;优化器沿着索引的顺序扫描&#xff0c;在扫描到符合条件的M行数据后&#xff0c;停止扫描&#xff1b;看起来非常的简单&am…

leetcode441. 排列硬币(二分查找)

你总共有 n 枚硬币&#xff0c;你需要将它们摆成一个阶梯形状&#xff0c;第 k 行就必须正好有 k 枚硬币。 给定一个数字 n&#xff0c;找出可形成完整阶梯行的总行数。 n 是一个非负整数&#xff0c;并且在32位有符号整型的范围内。 示例 1: n 5 硬币可排列成以下几行: …

【洛谷 P2051】 [AHOI2009]中国象棋(DP)

题目链接 首先想到状压dp&#xff0c;但是\(n,m\)高达100&#xff0c;怎么压&#xff1f; 容易发现&#xff0c;每行每列最多两个象棋&#xff0c;否则就直接gg了。 一个巧妙的设置状态的方式是&#xff0c;只需要记录到当前行有多少列是放了1个炮和2个炮。 然后每一行有3种选择…

循环 直到 python_如果您在Python中存在慢循环,则可以对其进行修复……直到无法解决为止...

循环 直到 pythonby Maxim Mamaev马克西姆马马耶夫(Maxim Mamaev) Let’s take a computational problem as an example, write some code, and see how we can improve the running time. Here we go.让我们以一个计算问题为例&#xff0c;编写一些代码&#xff0c;看看如何改…