Hi guys Im looking to know if that is possible. Or do you know another framework who runs on top of angularjs??
相关问题
- angularJS: ui-router equivalent to $location.searc
- Separate AngularJS Controllers Into Separate Files
- Angular ngAnimate not working first time on page l
- Ionic Spinner not showing up
- Upload file to Google Cloud Storage using AngularJ
相关文章
- Passing variable through URL with angular js
- Watch entire object (deep watch) with AngularJS
- Angular ng-if change span text
- Can ng-show directive be used with a delay
- AngularJS $routeParams vs $stateParams
- Multiple parameters in AngularJS $resource GET
- How to set class/style of accordion heading in Ang
- PUT to S3 with presigned url gives 403 error
UPDATE : As mentioned by @RationalDev, Ionic now supports browsers in general. However, they haven't explain what browsers.
http://blog.ionic.io/announcing-ionic-1-2/
=========================================================================== As mentioned in the Browser Support section of the Ionic Framework documentation, Ionic is really geared towards hybrid mobile apps.
However, it does work just fine in most WebKit browsers (Chrome and Safari in particular). In fact, I'd say most developers develop their app in Chrome 90% of the time and then test on their devices or a simulator.
I do know that FireFox is simply not supported. I don't know how well Ionic works in IE X.
If you want a mobile app, Ionic is a great option. However, if you are really targeting the desktop, I'd say you need to look elsewhere. Ionic provides no guarantee of support for desktops browsers and it's interface would limit the more feature rich and spacious capabilities of a desktop browser.
For AngularJS, you might want to look into AngularUI and AngularUI Bootstrap in particular. It has a really diverse desktop oriented feature set.
It sounds like the Ionic team is making this a priority now:
(source)
Ionic recently added a
browser
build target that generates a web app. If you runionic build browser
, you'll see that Ionic creates awww
folder containing assets you can deploy to a web server.There's a GitHub issue that links to some documentation, particularly a tutorial on how to deploy to Firebase that describes the browser build process (as well as Firebase-specific deployment steps, as you might imagine).
If you just want to test, check this out:
http://ionicframework.com/docs/guide/testing.html
Desktop browser testing
Testing your app in a browser is as simple as running the serve command in your project's root folder.
$ ionic serve
this would run your app in browser along with cordova included in it.