好好學習flash,以後把學習點滴記錄到這裡,呵呵,應該是個不錯的主意。每天進步一點點。
今天的任務是:已有載入了swf的php
頁面,需要把
頁面引數傳入
swf中,從而動態改變swf的一些屬性。
swf怎麼接收引數呢?
flash
使用flashvars接收
html
引數。
flashvars
嵌入html
的flashobject
,**如下:
(網上搜到的例子,有參考價值)
-中國" />
簡體中文-中國"
通過上面的**,在
swf(flashvars.swf)
中就可以直接獲取
foo、
program
、language
變數資料。flashvars.fla獲取
flashvars
引數的**如下:
// 建立三個文字字段
_root.createtextfield("foo_txt",1,0,0,16,16);
_root.createtextfield("program_txt",2,0,32,16,16);
_root.createtextfield("language_txt",3,0,64,16,16);
foo_txt.autosize = true;
foo_txt.border = true;
program_txt.autosize = true;
program_txt.border = true;
language_txt.autosize = true;
language_txt.border = true;
// 獲取
flashvars變數
foo_txt.text = "html
中的foo
引數:"+foo;
program_txt.text = "html
中的program
引數:"+program;
language_txt.text = "html
中的language
引數:"+language;
這種方法接引數,不難呵,呵呵,繼續努力……
請求引數接收
今天遇到乙個問題,前台傳乙個物件,該物件中有個屬性,屬性的值是陣列。後台直接用實體物件去接收,接收不到,前台報錯 badrequest404 仔細排查過後,發現應該這麼寫請求 ajax 標紅的是重要的 必須是json格式的內容,而且後台必須加 requestbody註解 不加不報錯,但是實體沒有值,...
Spring MVC接收引數
1.和servletapi緊耦方法 使用原生 servletapi 使用原有的request物件進行獲取 只需要在方法內容宣告request形參即可,servlet在呼叫的時候會自動賦值。按照request的使用方式正常使用即可 springmvc引數優點 沒有引數,不賦值,正常執行 有引數,則給引...
接收請求引數
採用基本型別接收請求引數 get post 在action類中定義與請求引數同名的屬性,struts2便能自動接收請求引數並賦予給同名屬性。請求路徑 http localhost 8080 test view.action?id 78 public class productaction publi...