8851b9aab9
website: modify favicon. #840 145aa54a4e
2024-10-14 20:05:37 +00:00
a6df2fd396
doc: Update README.md #102 596bff3f4a
2024-10-14 15:22:00 +00:00
2523c852f9
doc: update docker.md ( #839 )
...
统一端口号 612f874723
2024-10-13 06:38:10 +00:00
57103ca884
doc: update docker.md & linux-command.md & nginx.md ( #838 )
...
* doc: update linux-command.md
* 增加代理构建
* 删除上次提交多余 e3628fc62d
2024-10-12 09:46:18 +00:00
300ea1b306
doc: update docs/nginx.md ( #836 ) f6fe236778
2024-10-11 08:57:56 +00:00
fe5f075391
doc: update docs/nginx.md ( #836 ) 3749de233c
2024-10-11 08:49:00 +00:00
b7050ad86c
doc: update docs/css.md a69be1efba
2024-10-03 06:23:22 +00:00
e10713461e
doc: update docs/ffmpeg.md ( #835 ) c249e0e609
2024-09-30 03:48:05 +00:00
7031c98ce4
doc: update docs/vue.md #832 a74c7e2092
2024-09-29 10:30:54 +00:00
1060cb4041
docs: update vue.md ( #832 )
...
* doc:update docs/flutter.md
* docs:update docs/flutter.md
* docs:update docs/flutter.md
* docs:update vue.md & flutter.md 5ffc6faf3d
2024-09-25 15:54:29 +00:00
0859c5b67d
doc: update docs/flutter.md #830 ade6fbe3d0
2024-09-24 07:02:37 +00:00
037ee1346d
doc: Update README.md #102 93e3166fc5
2024-09-24 06:06:40 +00:00
ace125e977
docs:update /docs/flutter.md ( #830 )
...
* doc:update docs/flutter.md
* docs:update docs/flutter.md
* docs:update docs/flutter.md 33683eab41
2024-09-22 15:29:30 +00:00
85497f72cc
doc: update docs/flutter.md ( #828 ) 77b2c7a133
2024-09-21 15:33:01 +00:00
2695f306fe
doc: Update README.md #102 f510d354af
2024-09-20 11:32:24 +00:00
46e5232b37
doc: update docs/symbol-code.md fixed #823 f549244389
2024-09-17 14:12:23 +00:00
dd82d801db
doc: update docs/mysql.md fixed #827 2bac216f98
2024-09-17 12:37:30 +00:00
71946a9f9f
doc: Update README.md 0fb45105c9
2024-09-16 17:07:48 +00:00
6677067f8c
docs: update docs/c.md ( #821 ) ddc7f2dd47
2024-09-12 14:54:43 +00:00
53dc9f2066
doc: update docs/docker.md 660dfe103d
2024-08-29 12:09:11 +00:00
f6d117a8af
released v1.45.0 ea3391734b
2024-08-26 11:44:45 +00:00
d87ababdea
doc: update docs/minio.md #813 58efbde216
2024-08-19 07:19:19 +00:00
38373acf08
fix: Fixed description of math function ( #817 )
...
* fix: Fixed description of math.sqrt function
* fix: fix math.asin description
* Update lua.md d604a0d557
2024-08-18 09:59:58 +00:00
47dc772579
feat: add minio reference ( #813 )
...
* feat: add minio reference
* fix:alter minio.md c4ebb484cd
2024-08-15 14:46:52 +00:00
6a18428838
doc: update docs/dart.md ( #814 )
...
### Current behavior
The current asynchronous login sample code has the following issues:
1. The `main` function tries to use `await userName()`, but `userName` is a string variable, not a function.
2. the `login` function should be called and `await` should be used to wait for its result.
### Expected behavior
The `main` function should correctly call the `login` function and use `await` to wait for the result, then print out the username.
### Sample code
Here is the corrected code:
```dart
Future<String> login() {
String userName = "Temidjoy";
return Future.delayed(
Duration(seconds: 4), () => userName
).
}
main() async {
print('Authenticating please wait...') The
String result = await login();
String result = await login(); print(result);
} f0da2a3397
2024-08-15 01:10:54 +00:00
4ee2e1bc0c
doc: Update README.md 8963525b9a
2024-08-12 17:13:42 +00:00
ad50e8a0ca
doc: Update README.md 4e1a4bb641
2024-08-09 03:50:26 +00:00
46bda1ff2e
doc: update docs/typescript.md 1a37518aab
2024-08-09 03:37:18 +00:00
b1399606bb
doc: update docs/typescript.md d42cbc7d2c
2024-08-09 03:29:24 +00:00
b5b01025f2
doc: Update README.md ( #102 ) f80b5795bc
2024-08-01 12:33:21 +00:00
0e941c071d
doc: Update github-actions.md 90b9b407b3
2024-07-28 19:22:36 +00:00
3055491199
doc: update docs/github-actions.md 58991c482e
2024-07-28 15:35:27 +00:00
1b304c6a05
doc: Update linux-command.md ( #807 )
...
add zip/unzip commands a3d3d4b0dd
2024-07-27 15:23:06 +00:00
fdae09101e
doc: Update README.md #102 8c8b721015
2024-07-26 07:37:46 +00:00
72720453ba
doc: Update README.md #102 ec6d1677d6
2024-07-24 17:59:28 +00:00
e6e406cf4e
doc: update dart.md ( #806 )
...
* doc: update dart.md
* doc: update dart.md
完善 import 部分内容
* doc: update dart.md
修正翻译错误,将 “地图” 修改为 “映射” d7ea92c019
2024-07-24 16:04:16 +00:00
feb1cc2e9b
feat: add jupyter ( #803 )
...
* feat: add jupyter note
* fix: alter note
* fix:add note f25137d53d
2024-07-21 07:10:00 +00:00
5c4b861aa9
doc: Update README.md #102 3e40d6e54f
2024-07-18 17:54:15 +00:00
db514dbe8d
doc: update docs/git.md 145bdf9119
2024-07-18 09:15:17 +00:00
0d1c226d30
doc: update golang.md ( #802 )
...
类型转换中补充了字符串与其他类型相互转换的方法 708329d8f2
2024-07-17 14:46:32 +00:00
fcef1fdddc
doc: update flutter.md ( #800 ) fac5af10c8
2024-07-15 10:16:47 +00:00
1f1c10e329
doc: update dart.md ( #801 ) a45e63a966
2024-07-15 10:16:17 +00:00
baa4877bea
doc: Update README.md #102 a05328f389
2024-07-14 14:51:44 +00:00
79ff7f35e3
doc: Update README.md #786 0d7f6653b6
2024-07-08 17:18:48 +00:00
9159d4f54d
doc: Update vue.md ( #786 )
...
添加 vue3 watch 监听多个值的模板 3cbec70a5e
2024-07-08 17:13:46 +00:00
3c3477906b
doc: Update docs/json.md 8e9132f900
2024-07-05 04:03:53 +00:00
4d95d46af2
doc: Update README.md aadda3d5c5
2024-07-02 14:16:26 +00:00
be7a41b733
doc: Update README.md #102 031b7f1976
2024-06-29 10:44:00 +00:00
7931e288b0
doc: Update README.md ( #102 ) 34bf61c2fb
2024-06-27 14:55:37 +00:00
d6604407e1
doc: update stylex.md 3e05d637d3
2024-06-26 04:13:34 +00:00