包含文件包含“ wxevt_webview_loaded”。宏?
使用Erlang 24.3.3。
从24.3.3文档中,wx
版本为2.1.3。 我找到了2.1.3的wx.hrl
,它不包含wxevt_webview_loaded
和wxevt_webview_error
。 但是在文档中,它说
wxwebview中的许多方法都是异步的,即它们返回 立即在后台执行工作。这包括 诸如LoadUrl/2和Reload/2之类的功能。收到通知 您需要处理这些功能的进度和完成 提供的活动。特别是wxevt_webview_loaded通知 页面或子框架完成加载时 wxevt_webview_error通知发生了错误。
我的代码如下:
Ad = wxWebView:new(Frame,?wxID_ANY,[{size,{1000,1000}}]),
lager:debug("_ad_1082:\t~p",[Ad]),
ok = wxWebView:loadURL(Ad,"http://www.baidu.com"),
wxFrame:connect(Ad, ?wxEVT_WEBVIEW_LOADED,[{callback,fun chair_launch_frame:update_webview/2},
{userData,{?CONST_FRAME_MAIN_AD_PRODUCER,Frame}}]),
wxFrame:connect(Ad, ?wxEVT_WEBVIEW_ERROR,[{callback,fun chair_launch_frame:update_webview/2},
{userData,{?CONST_FRAME_MAIN_AD_PRODUCER,Frame}}]),
编译器给出错误MESSAGE 未定义的宏'wxevt_webview_loaded'
erlang 24.3.3 is used.
From the 24.3.3 document, the wx
version is 2.1.3.
I have find 2.1.3's wx.hrl
and it doesn't contain the wxEVT_WEBVIEW_LOADED
and wxEVT_WEBVIEW_ERROR
.
But in the doc, it says
Many of the methods in wxWebView are asynchronous, i.e. they return
immediately and perform their work in the background. This includes
functions such as loadURL/2 and reload/2. To receive notification of
the progress and completion of these functions you need to handle the
events that are provided. Specifically wxEVT_WEBVIEW_LOADED notifies
when the page or a sub-frame has finished loading and
wxEVT_WEBVIEW_ERROR notifies that an error has occurred.
My code is as follows:
Ad = wxWebView:new(Frame,?wxID_ANY,[{size,{1000,1000}}]),
lager:debug("_ad_1082:\t~p",[Ad]),
ok = wxWebView:loadURL(Ad,"http://www.baidu.com"),
wxFrame:connect(Ad, ?wxEVT_WEBVIEW_LOADED,[{callback,fun chair_launch_frame:update_webview/2},
{userData,{?CONST_FRAME_MAIN_AD_PRODUCER,Frame}}]),
wxFrame:connect(Ad, ?wxEVT_WEBVIEW_ERROR,[{callback,fun chair_launch_frame:update_webview/2},
{userData,{?CONST_FRAME_MAIN_AD_PRODUCER,Frame}}]),
The compiler give error messsage undefined macro 'wxEVT_WEBVIEW_LOADED'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论