flex怎么获取服务器端的IP和地址
flex里的httpservice需要的url,那么这个url的IP和端口怎么办得到?手动的写死吗?万一服务器IP有改变怎么办,flex有什么方法可以获取服务器的IP和端...
flex里的httpservice需要的url,那么这个url的IP和端口怎么办得到?手动的写死吗?万一服务器IP有改变怎么办,flex有什么方法可以获取服务器的IP和端口吗?
展开
2个回答
展开全部
使用绝对定位, 你通过使用其 x 和 y 属性来指定子控件的位置, 或者指定基于限制的布局;否则, Flex 会将该子级置于父容器的位置 0,0
处。 当指定 x 和 y 坐标时, 仅当更改这些属性值时, Flex
才会重新定位控件。使用<s:BasicLayout/>标签表示绝对定位。
下面这个例子使用了据对定位标签,容器内名为“按钮1”的组件未定义坐标则默认放在(0,0)位置,其它组件定义了xy则排放在指定位置。
例子如下:
<s:Application xmlns:fx="http://IP/mxml/2009"
xmlns:s="library://IP/flex/spark"
xmlns:mx="library://IP/flex/mx" minWidth="955" minHeight="600">
<s:layout>
<s:BasicLayout/>
</s:layout>
<s:Button label="按钮1"/>
<s:Button x="92" y="0" label="按钮2"/>
<s:TextInput x="0" y="29"/>
</s:Application>
处。 当指定 x 和 y 坐标时, 仅当更改这些属性值时, Flex
才会重新定位控件。使用<s:BasicLayout/>标签表示绝对定位。
下面这个例子使用了据对定位标签,容器内名为“按钮1”的组件未定义坐标则默认放在(0,0)位置,其它组件定义了xy则排放在指定位置。
例子如下:
<s:Application xmlns:fx="http://IP/mxml/2009"
xmlns:s="library://IP/flex/spark"
xmlns:mx="library://IP/flex/mx" minWidth="955" minHeight="600">
<s:layout>
<s:BasicLayout/>
</s:layout>
<s:Button label="按钮1"/>
<s:Button x="92" y="0" label="按钮2"/>
<s:TextInput x="0" y="29"/>
</s:Application>
Storm代理
2023-07-25 广告
2023-07-25 广告
StormProxies是一家提供动态代理服务器服务的企业,旨在帮助用户更好地管理网络访问和安全。以下是一些关于StormProxies的IP动态代理服务的特点:1. 高匿名性:StormProxies的动态代理服务器具有高匿名性,可以有效...
点击进入详情页
本回答由Storm代理提供
展开全部
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
creationComplete="initApp()"
>
<mx:Script>
<![CDATA[
import mx.utils.URLUtil;
private function initApp():void {
var url:String = Application.application.url;
fullURL = URLUtil.getFullURL(url, url);
port = URLUtil.getPort(url);
protocol = URLUtil.getProtocol(url);
serverName = URLUtil.getServerName(url);
isSecure = URLUtil.isHttpsURL(url);
}
[Bindable]
private var fullURL:String;
[Bindable]
private var protocol:String;
[Bindable]
private var port:int;
[Bindable]
private var serverName:String;
[Bindable]
private var isSecure:Boolean;
]]>
</mx:Script>
<mx:Form>
<mx:FormItem label="Full URL:">
<mx:Label text="{fullURL}"/>
</mx:FormItem>
<mx:FormItem label="Protocol:">
<mx:Label text="{protocol}"/>
</mx:FormItem>
<mx:FormItem label="Port:">
<mx:Label text="{port}"/>
</mx:FormItem>
<mx:FormItem label="Server name:">
<mx:Label text="{serverName}"/>
</mx:FormItem>
<mx:FormItem label="Is secure?:">
<mx:Label text="{isSecure}"/>
</mx:FormItem>
</mx:Form>
</mx:Application>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
creationComplete="initApp()"
>
<mx:Script>
<![CDATA[
import mx.utils.URLUtil;
private function initApp():void {
var url:String = Application.application.url;
fullURL = URLUtil.getFullURL(url, url);
port = URLUtil.getPort(url);
protocol = URLUtil.getProtocol(url);
serverName = URLUtil.getServerName(url);
isSecure = URLUtil.isHttpsURL(url);
}
[Bindable]
private var fullURL:String;
[Bindable]
private var protocol:String;
[Bindable]
private var port:int;
[Bindable]
private var serverName:String;
[Bindable]
private var isSecure:Boolean;
]]>
</mx:Script>
<mx:Form>
<mx:FormItem label="Full URL:">
<mx:Label text="{fullURL}"/>
</mx:FormItem>
<mx:FormItem label="Protocol:">
<mx:Label text="{protocol}"/>
</mx:FormItem>
<mx:FormItem label="Port:">
<mx:Label text="{port}"/>
</mx:FormItem>
<mx:FormItem label="Server name:">
<mx:Label text="{serverName}"/>
</mx:FormItem>
<mx:FormItem label="Is secure?:">
<mx:Label text="{isSecure}"/>
</mx:FormItem>
</mx:Form>
</mx:Application>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询