创建移动网络版本的网站有哪些步骤?
我已经用 asp.net jquery sql server 2008 构建了一个网站。现在我想构建它的移动版本(网络,可通过浏览器访问)。我是否必须将数据迁移到云?如果我在 .NET 中构建移动设备,是否可以通过 iPhone 和 Android 访问,因为可以通过浏览器访问?我的网站是地点的社交目录,是否有 GPS api 可以帮助我指示用户位于某个地点附近?
I have built a website with asp.net jquery sql server 2008.Now i want to build a mobile version of it(web,accessible via the browser).Do i have to to migrate data to the cloud?if i build in .NET mobile ,will it be accessible from iphone and adroid as it will be accessible via browser?my website is social directory for places,is there a gps api that can help me to indicate that a user is near a place?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在创建具有现有数据源等的当前应用程序的移动版本,理论上您唯一需要更改的是您的前端以适合移动浏览器。
最后,您的网络服务器仍将像任何其他普通浏览器一样提供页面服务(除非它只是移动版本),并且具有与标准站点相同的资源访问权限(例如数据库0)
。对于“云”,您没有理由需要在其中真正托管任何内容(网络/数据服务器),但如果您的站点最终变得很大和/或您不想担心管理基础设施问题等投资云可能是一个好主意,有很多理由选择云,但对于您想要实现的目标来说,这并不是必需的。
If you're creating a mobile version of a current app that has existing data sources etc theoretically the only thing you should have to change is your front end to be suitable for a mobile browser.
In the end you web server will still be serving the pages as if it was any other normal browser (except it would just be the mobile version), and have the same access to resources (eg. databases0 that the standard site does.
In terms of "the cloud" there is no reason that you need to really host anything in there (web/data server) but if you site ends up getting large and/or you don't want to worry about managing infrastructure issues etc investing in the cloud may be a good idea, there is plenty of reasons to go to the cloud but for what you are trying to achieve it is not a necessity.