Flex 4 - 允许在本地和开发服务器上进行 HTTPService 测试的技术
现在,我已经对 HTTPService 的 URL 进行了硬编码,以便与本地计算机的 Web 服务器一起使用,这样我就不需要在编译后将文件复制到 htdocs。有什么好技术可以轻松地将 HTTPService URL 从用于我的测试设置转换为用于正常的 Web 服务器设置?
Right now I have my URLs hard-coded for HTTPService to work with my local machine's web server so that I don't need to copy files to htdocs after compiling. What's a good technique to easily transition HTTPService URLs from working on my testing setup to working with a normal web server setup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编写一项服务来获取应用程序所在的当前环境,类似于测试您是否在 AIR 或 Flex 中运行的方式。
在您的 HTTPService 中:
在 EnvironmentService 中:
如果这对您不起作用,请发布更多代码,我们将研究解决方案
Write a service to get the current environment your application is in, similar to how one tests if you're running in AIR or Flex.
In your HTTPService:
In EnvironmentService:
If this doesn't work for you, post some more code and we'll work on a solution