0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Xojo Web アプリで GETメソッドを実現するには

Posted at

フォームのGETメソッドを伴うページ遷移をしたい。

送信側


Me.ShowURL("http://www.google.com/search?q="+TextField1.text)

上記はサニタイズしていないので適宜処理を追加する必要がある。

受信側

でアクセスしたパラメータを取得する場合、

Appに String1 As String および「HandleURL」Eventを追加。HandleURLを以下のように記述する


String1=Request.GetParameter("test")

WebPage1にButton1を配置し、Actionに以下を追加する


messagebox(App.String1)

image.png

WebApplication.HandleSpecialURL

以下のような、 「api」または「special」へアクセスする場合、

http://127.0.0.1:8080/api/GetAllCustomers
http://127.0.0.1:8080/special/GetAllCustomers

WebApplication.HandleSpecialURL

を使って独自のHTML応答を実現できる。
http://docs.xojo.com/WebApplication.HandleSpecialURL

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?