關於我自己

2018年11月29日 星期四

Django Rest_Framework Authtoken

Authtoken

1.URL
2.Json 產生一個新帳號~然後用帳號跟密碼登入得到token

3.用非管理者token要新增資料~無法新增資料
4.用管理者tomcat的token


5.更改function把他更改成一般註冊者可以新增資料

2018年11月13日 星期二

GUI的文字編輯工具(Linux)

 我蠻喜歡用的  文字編輯工具

sudo apt-get install nautilus-admin
wget https://raw.githubusercontent.com/hotice/webupd8/master/org.gnome.gedit.policy -O /tmp/org.gnome.gedit.policy
sudo cp /tmp/org.gnome.gedit.policy /usr/share/polkit-1/actions/
pkexec gedit
直接不用認證打 gedit


2018年8月7日 星期二

Android 錯誤碼 ~ 修正方案!!

1.Android “Only the original thread that created a view hierarchy can touch its views."


解的方式:  UI更新

runOnUiThread(new Runnable() {
    @Override    public void run() {

        // Stuff that updates the UI        TextView t1 = (TextView)findViewById(R.id.textView1);
        t1.setText(message1);
    }
});

2018年4月23日 星期一