2 Star 0 Fork 0

elsejj/dzhyun.mobile

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.ios.js 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
elsejj 提交于 2015-11-04 15:40 . add DzhChannel to ios projects
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
var React = require('react-native');
var DzhChannel = require('./Libraries/YunSdk/DzhChannel')
var {
AppRegistry,
StyleSheet,
Text,
View,
} = React;
var hello = React.createClass({
render: function() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>
Welcome to React Native!
</Text>
<Text style={styles.instructions}>
To get started, edit index.ios.js
</Text>
<Text style={styles.instructions}>
Press Cmd+R to reload,{'\n'}
Cmd+D or shake for dev menu
</Text>
</View>
);
},
componentDidMount() {
var ws = new DzhChannel("ws://v2.yundzh.com/ws?token=491deae237634848bf274aac4a410895");
ws.onopen = function() {
ws.send("/quote/kline?obj=SH600000&period=1day&qid=inputbox&start=-100&output=pb");
};
ws.onmessage = function(e) {
console.log(e.data);
};
this.ws = ws;
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
AppRegistry.registerComponent('dzhyun', () => hello);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/elsejj/dzhyun.mobile.git
git@gitee.com:elsejj/dzhyun.mobile.git
elsejj
dzhyun.mobile
dzhyun.mobile
master

搜索帮助