2016-09-01から1ヶ月間の記事一覧
/// <summary> /// プライベート変数の取得. /// </summary> /// <param name="obj">Object.</param> /// <param name="privateName">Private name.</param> /// <typeparam name="T">The 1st type parameter.</typeparam> protected T GetPrivate<T>(object obj, string privateName) { System.Reflection.FieldInfo fieldInfo = obj.…</t>
docker ps docker info docker version docker images
React Native ファーストインプレッション - Qiita この記事を参考に以下のサイトを参考 facebook.github.io class AwesomeProject extends Component { constructor(props) { super(props); this.state = {text: ""}; } // これ不要? onChangeText(text) {…
var Hello = React.createClass({ getDefaultProps: function() { return {name: "Default Props"}; }, render: function() { return <div>Hello {this.props.name}</div>; } }); みたいなコードのgetDefaultPropsをクラスでやる時どうするのかな? reactjs - What is t…
Unity - マニュアル: JSON 形式にシリアライズ 今更ながらJsonUtility using UnityEngine; using System.Collections; public class JsonTest : MonoBehaviour { // Use this for initialization void Start () { MyClass myObject = new MyClass (); myObje…
stringのフォーマットがデフォルトではなくErlangの使うのでめんどい。 qiita.com なのでErlangのはこれを参考にした。 文字と文字列 / Erlang World Erlangでいうことの io:format("hello ~p~n",[erlang]). これは、 :io.format("hello ~p", ['erlang']) ie…
APIとしてPhoenixで生成し、 mix phoenix.gen.json Book books title:string category:string ReactでのPOSTをこうしていた。 $.ajax({ url: this.props.url, dataType: 'json', method: 'POST', data:this.state.editingBook, cache: false, success: funct…
Uncaught TypeError: this.props.books.forEach is not a function var BookTable = React.createClass({ render: function() { var rows = []; this.props.books.forEach(function(book) { // ← ここでエラー rows.push(<BookTableRow key={book.id} book={book} handleEditClickPanel={this.props.handleEditClickPanel} />); }…</booktablerow>
- var query = React.findDOMNode(this.refs.search).value; + var query = ReactDOM.findDOMNode(this.refs.search).value;
mix phoenix.serverしたときに発生 [info] Running Jikken.Endpoint with Cowboy using http://localhost:4000 04 Sep 16:19:19 - info: compiling 04 Sep 16:19:21 - error: Compiling of web/static/js/components/PagingPanel.js failed. SyntaxError: we…