Flex 4 - 允许在本地和开发服务器上进行 HTTPService 测试的技术

发布于 2024-10-16 13:32:32 字数 144 浏览 3 评论 0原文

现在,我已经对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨光如昨 2024-10-23 13:32:32

编写一项服务来获取应用程序所在的当前环境,类似于测试您是否在 AIR 或 Flex 中运行的方式。

在您的 HTTPService 中:

url="EnvironmentService.getURL1();"

在 EnvironmentService 中:

public static function getUrl1():URL
{   
     return (LOCAL_ENVIRONMENT)? LOCAL_URL1 : LIVE_URL1;
}

如果这对您不起作用,请发布更多代码,我们将研究解决方案

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:

url="EnvironmentService.getURL1();"

In EnvironmentService:

public static function getUrl1():URL
{   
     return (LOCAL_ENVIRONMENT)? LOCAL_URL1 : LIVE_URL1;
}

If this doesn't work for you, post some more code and we'll work on a solution

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文