現在、QtQuickを勉強がてらウェブブラウザを自作中です
QtWebEngineを使って実装を行っているのですが
最初にgoogleのトップページを開くようなシンプルなブラウザを作っています
QML
1ApplicationWindow { 2 id: root 3 visible: true 4 width: 640 5 height: 480 6 title: qsTr("Hello World") 7 8 WebEngineView { 9 anchors.topMargin: 50 10 anchors.fill: parent 11 url: "https://www.google.co.jp" 12 13 onLoadingChanged: { 14 console.log(WebEngineLoadRequest.url) 15 } 16 } 17 18 Row { 19 width: root.width 20 21 ButtonBaseParts { 22 id: back_button 23 width: 50 24 height: 50 25 Text { 26 anchors.centerIn: parent 27 text: qsTr("◀") 28 } 29 } 30 31 ButtonBaseParts { 32 id: next_button 33 width: 50 34 height: 50 35 Text { 36 anchors.centerIn: parent 37 text: qsTr("▶") 38 } 39 } 40 41 TextInput { 42 id: url_area 43 width: root.width - back_button.width - next_button.width - go_button.width 44 height: 50 45 verticalAlignment: Text.AlignVCenter 46 text: qsTr("https://www.google.co.jp") 47 font.pixelSize: 20 48 } 49 50 ButtonBaseParts { 51 id: go_button 52 width: 50 53 height: 50 54 Text { 55 text: qsTr("→") 56 anchors.centerIn: parent 57 } 58 } 59 } 60} 61
URLの入力欄に読み込んだページのURLに書き換えたいのですが
(TextInputのtextを外部から書き換える方法もまだ分かっていませんが...)
とりあえず、URLの文字列を取得できるか確認しようと思ったのですが
console.log(WebEngineLoadRequest.url)
の結果はqml: undefined
となってしまいました
console.log(WebEngineLoadRequest.url.toString())
と変更してみたのですが、TypeError: Cannot call method 'toString' of undefined
とエラーが出てしまいました
色々調べてみても自分の検索能力と英語力では限界が来てしまい
質問させていただきました
よろしくお願いいたします
回答1件
あなたの回答
tips
プレビュー