タグ付けされた質問 「render」

16
解析エラー:隣接するJSX要素は囲みタグで囲む必要があります
私が設定しReact.jsた変数がの場合にのみレンダリングされるようにアプリを設定しようとしていますtrue。 私のレンダー関数の設定方法は次のようになります。 render: function() { var text = this.state.submitted ? 'Thank you! Expect a follow up at '+email+' soon!' : 'Enter your email to request early access:'; var style = this.state.submitted ? {"backgroundColor": "rgba(26, 188, 156, 0.4)"} : {}; return ( <div> if(this.state.submitted==false) { <input type="email" className="input_field" onChange={this._updateInputValue} ref="email" value={this.state.email} …

26
react.jsでレンダリングした後、ページの一番上までスクロールします。
どうすればいいかわからない問題がありました。私の反応コンポーネントでは、データの長いリストと下部にいくつかのリンクを表示します。このリンクのいずれかをクリックした後、リンクの新しいコレクションをリストに入力し、一番上までスクロールする必要があります。 問題は- 新しいコレクションがレンダリングされた後にどのように一番上にスクロールするかです。 'use strict'; // url of this component is #/:checklistId/:sectionId var React = require('react'), Router = require('react-router'), sectionStore = require('./../stores/checklist-section-store'); function updateStateFromProps() { var self = this; sectionStore.getChecklistSectionContent({ checklistId: this.getParams().checklistId, sectionId: this.getParams().sectionId }).then(function (section) { self.setState({ section, componentReady: true }); }); this.setState({componentReady: false}); } var Checklist = React.createClass({ …
168 scroll  reactjs  render 


5
Railsはブロックで部分的にレンダリングされます
私が書いたパネルコンポーネントを提供するhtmlコンポーネントを再利用しようとしています。何かのようなもの: <div class="v-panel"> <div class="v-panel-tr"></div> <h3>Some Title</h3> <div class="v-panel-c"> .. content goes here </div> <div class="v-panel-b"><div class="v-panel-br"></div><div class="v-panel-bl"></div></div> </div> つまり、レンダーにはブロックがかかることがわかります。私はそれから私はこのようなことをすることができると考えました: # /shared/_panel.html.erb <div class="v-panel"> <div class="v-panel-tr"></div> <h3><%= title %></h3> <div class="v-panel-c"> <%= yield %> </div> <div class="v-panel-b"><div class="v-panel-br"></div><div class="v-panel-bl"></div></div> </div> そして私は次のようなことをしたいです: #some html view <%= render :partial => '/shared/panel', :locals …

11
Railsで別のフォーマットのパーシャルをレンダリングするにはどうすればよいですか?
HTMLを含むJSON応答を生成しようとしています。したがって、私は持っています/app/views/foo/bar.json.erb: { someKey: 'some value', someHTML: "<%= h render(:partial => '/foo/baz') -%>" } レンダリングしたいのですが、レンダリング/app/views/foo/_baz.html.erbするだけ/app/views/foo/_baz.json.erbです。合格:format => 'html'しても役に立たない。

7
レンダリングの問題を解決する方法Path.op()はサポートされていませんか?
このエラーの解決方法:レンダリングの問題Path.op()はサポートされていません レイアウトの強制更新、再起動、Android Studioの更新、ウイルス対策の停止をしばらく試みましたが、まだ問題は解決していません。 驚いたことに、アプリをコンパイルして実行することはできますが、このエラーを取り除く方法は? 使っています: Android Studio 3.5.3 Android SDKツール29.0.2 Android SDKプラットフォームAndroid 10.0(Q)Android SDKプラットフォーム29 デフォルトのOpenJDKプラットフォームバイナリ エラーを再現するには: 空のアクティビティで新しいAndroidプロジェクトを作成する レイアウトを次のレイアウトに置き換えます。 <?xml version="1.0" encoding="utf-8"?> <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/parent_view" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:background="@android:color/white"> <com.google.android.material.appbar.AppBarLayout android:id="@+id/appbar" android:layout_width="match_parent" android:layout_height="wrap_content"> <include layout="@layout/toolbar" /> </com.google.android.material.appbar.AppBarLayout> <androidx.core.widget.NestedScrollView android:id="@+id/nested_scroll_view" android:layout_width="match_parent" android:layout_height="match_parent" android:clipToPadding="false" android:scrollbars="none" android:scrollingCache="true" app:layout_behavior="@string/appbar_scrolling_view_behavior"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.