taxonomyservice.mxml

来自「flex 实现的一个showcase 喜欢flex的朋友可以」· MXML 代码 · 共 30 行

MXML
30
字号
<?xml version="1.0" encoding="utf-8"?>
<FlexShowcaseService 
	xmlns:mx="http://www.adobe.com/2006/mxml"
	xmlns="com.flexShowcase.net.remote.*" 
	>
	
	
	<mx:RemoteObject
		id="taxonomy"
		source="taxonomy"
		destination="amfphp"
		showBusyCursor="false"
		endpoint="{flexShowcaseServiceConfig.amfphpEndpointURI}"
		>
		
		<!--
			use getTree to retrieve the technology taxonomy tree(vid=1), industry taxonomy tree(vid=2), and tag taxonomy tree(vid=3).
			getTree accepts a vid.
		-->
		<mx:method name="getTree" />
		
		<!--
			use selectNodes to retrieve projects related to a specific taxonomy tag.
			selectNodes accepts tids that can be retrieved from the getTree results.
		-->
		<mx:method name="selectNodes" />
	</mx:RemoteObject>
	
	
</FlexShowcaseService>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?