如何在 cocos 创建者中通过 .js 在 WebView 中打开 URL
How to open URL in WebView through .js in cocos creator
我想像这样打开任何 url(https://example.com/mPayment/api.php?playerid=name&method=init)
在我的 WebView 中通过脚本编码而不是从 CocosCreator 中的设计视图。
我已经完成了这段代码,但它没有打开我做错了什么,
var url = "https://example.com/mPayment/api.php?playerid=name&method=init";
this.webPage._url = url;
console.log("Webview1111111 ==== ", this.webPage._url);
在 url 上有一个我想传递玩家 ID 的名称。
我非常想在我的 cocos 创作者游戏中实施支付网关。
工作正常:
this.webView.url = this.editBox.string;
可能你忘记了在设计器中将 webView 绑定到 UI 元素。
我想像这样打开任何 url(https://example.com/mPayment/api.php?playerid=name&method=init) 在我的 WebView 中通过脚本编码而不是从 CocosCreator 中的设计视图。 我已经完成了这段代码,但它没有打开我做错了什么,
var url = "https://example.com/mPayment/api.php?playerid=name&method=init";
this.webPage._url = url;
console.log("Webview1111111 ==== ", this.webPage._url);
在 url 上有一个我想传递玩家 ID 的名称。 我非常想在我的 cocos 创作者游戏中实施支付网关。
工作正常:
this.webView.url = this.editBox.string;
可能你忘记了在设计器中将 webView 绑定到 UI 元素。